Some parsers allow code to be designated by adding three backticks before and after a section of code.
```
<p><em>This</em> is an HTML example!</p>
```
Optionally, many parsers allow adding syntax highlighting by specifying the code's language immediately after the first set of backticks:
```html
<p><em>This</em> is an HTML example!</p>
```
Result:
<p><em>This</em> is an HTML example!</p>