Quick Block Modifiers
Blocks of text default to being treated as paragraphs. But modifers can be affixed to the beginning of a block to change its treatment.
Headers
To make an entire paragraph into a Header, place "hn." at its beginning, where n is a number from 1-6.
You type
h2. Header 2
h3. Header 3
h3. Header 3
Resulting HTML
<h2>Header 2</h2>
<h3>Header 3</h3>
What appears on the screen
Header 2
Header 3
Block Quotes
To make an entire paragraph into a block quotation, place "bq." before it.
You type
Any old text
bq. A block quotation.
Any old text
bq. A block quotation.
Any old text
Resulting HTML
<p>Any old text</p>
<blockquote>
<p>A block quotation.</p>
</blockquote>
<p>Any old text</p>
What appears on the screen
Any old text
A block quotation.
Any old text

