Snowman supports HTML element markup consisting of brackets and braces with the ID or name of the CSS class.

<code>
[
Create element
]{#elementID.className}
</code>

It also includes and supports the [[https://daringfireball.net/projects/markdown/basics|Markdown]] format. The following is an example of using headers and blockquotes:

<code>
    A First Level Header
    ====================
    
    A Second Level Header
    ---------------------

    Now is the time for all good men to come to
    the aid of their country. This is just a
    regular paragraph.

    The quick brown fox jumped over the lazy
    dog's back.
    
    ### Header 3

    > This is a blockquote.
    > 
    > This is the second paragraph in the blockquote.
    >
    > ## This is an H2 in a blockquote
</code>