List of Languages Supported by Markdown Syntax Highlighting
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