how to highlight code in readme.md code example
Example 1: text bold in .md file
**My Bold Text**
Example 2: code blocks md
```
function test() {
console.log("notice the blank line before this function?");
}
```
**My Bold Text**
```
function test() {
console.log("notice the blank line before this function?");
}
```