Add a title to a fenced code block
Enter the language tag of the Fenced code block followed by a colon (":
") and the title.
If only a colon is entered and no title is specified, the language will be displayed as the title.
```js:this is title
function hello() {
console.log('Hello world')
}
```