{{#markdown}} ### Inline code highlighting If you want to do a bit of `inline-code`, use the the `` element or `span.code`. ### Generic code block Use a nested combination of `
` and `` for a code block.

```

This is a sample code block

I'm text!

```
#### Stylised code block If you use [Pygments code formatting](http://pygments.org/) you can use [ebi-code.css](http://www.ebi.ac.uk/web_guidelines/EBI-Framework/v1.2/css/ebi-code.css) for syntax highlighting, like so:
##### HTML ``` html

This is a sample HTML code block

I'm text!

```
##### PHP ```php function text() { print '

This is a sample PHP code block

' . '

I'm text!

'; return true; } ```
{{> code-highlighting}}
{{/markdown}}