Syntax highlight is supported with the language specified after the first set of backticks. We use prismjs for syntax highlighting, a list of supported languages can be found [at their site](https://prismjs.com/#supported-languages)
```js
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```
```js function fancyAlert(arg) { if(arg) { $.facebox({div:'#foo'}) } } ``` ```md Text indented with a tab is formatted like this, and will also look like a code block in preview. ``` Text indented with a tab is formatted like this, and will also look like a code block in preview.