Styles for inline code snippets and longer, multiline blocks of code.
## Contents
* Will be replaced with the ToC, excluding the "Contents" header
{:toc}
## Inline code
Wrap inline snippets of code with `<code>`. Be sure to escape HTML angle brackets.
{% example html %}
For example, <code><section></code> should be wrapped as inline.
{% endexample %}
## Code blocks
Use `<pre>`s for multiple lines of code. Once again, be sure to escape any angle brackets in the code for proper rendering. You may optionally add the `.pre-scrollable` class, which will set a max-height of 350px and provide a y-axis scrollbar.
{% example html %}
<pre><code><p>Sample text here...</p>
<p>And another line of sample text here...</p>