Code
Inline `code` has `back-ticks around` it.
Inline code
has back-ticks around
it.
Multiline code block are fenced by lines with three back-ticks ```.
```python
s = "Python syntax highlighting"
print s
```
```
If no language is indicated,
the language will be guessed.
If you do not want syntax-highlighting,
uses the language `plain`.
```
s = "Python syntax highlighting"
print s
If no language is indicated,
the language will be guessed.
If you do not want syntax-highlighting,
uses the language `plain`.