Markdown Guide
In this guide
Headings
Styles for Headings
#h1 heading
##h2 heading
###h3 heading
####h4 heading
#####h5 heading
Code
Styles for how to include code into the documents.
Inline code with no sample
{% highlight html %}
<html>
<head>
<title>Hello World</title>
</head>
</html>
{% endhighlight %}
<html>
<head>
<title>Hello World</title>
</head>
</html>
Include Javascript
{% include_code _code/test.js testjs javascript %}