“`javascript
function syntaxHighlighting() {
var n = 33;
var s = “hi”;
console.log(s);
}
“`
* plain
* *emphasis*
* **strong emphasis**
* `inline code`
1. Numbered list
1. [Link](https://www.google.com)
> Block quote.
> *With* **some** `markdown`.
If **TeX Math** support is enabled, this is the quadratic equation:
$-b \pm \sqrt{b^2 – 4ac} \over 2a$
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Horizontal rule
—
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
</dl>
<table>
<tr>
<th></th>
<th>Tables</th>
<th>Are</th>
<th>Cool</th>
</tr>
<tr>
<th>Zebra</th>
<td>Stripes</td>
<td>Are</td>
<td>Pretty</td>
</tr>
<tr>
<th>Here</th>
<td>Is</td>
<td>Another</td>
<td>Row</td>
</tr>
</table>
“`
code block
with no highlighting
“`