less than 1 minute read

The link below is the list of languages supported for syntax highlighting in markdown.

https://github.com/github/linguist/blob/master/lib/linguist/languages.yml

You use syntax highlighting as follows.

# sharp(#) is a comment 
# ```javascript
console.log(`hello world`)
# ```

The result looks like this.

console.log(`hello world`)

That’s it!

Leave a comment