how to put a text of code in markdown code example
Example 1: code blocks md
```
function test() {
console.log("notice the blank line before this function?");
}
```
Example 2: link in markdown
[Name](Link)
```
function test() {
console.log("notice the blank line before this function?");
}
```
[Name](Link)