==( Basic Kwid to HTML
==> ONLY
==> kwid
This is a paragraph.

This is a second paragraph.
With 2 lines.
==> html
<p>
This is a paragraph.
</p>
<p>
This is a second paragraph. With 2 lines.
</p>
==> pod
This is a paragraph.

This is a second paragraph.
With 2 lines.
==( Line Comments
==> kwid
#
#content line
# comment line
2nd line

# line1
# line2


line3
==> html
<p>
#content line 2nd line
</p>
<p>
line3
</p>
==( HTML Escaping
==> kwid
<foo> & </bar>
==> html
<p>
&lt;foo&gt; &amp; &lt;/bar&gt;
</p>
==( Verbatim Paragraph
==> kwid
  This is a normal paragraph
with the first line indented.

  This is a verbatim paragraph

    This is verbatim
  with multiple lines.

  This is verbatim with one line at end of stream.
==> html
<p>
This is a normal paragraph with the first line indented.
</p>
<pre>
This is a verbatim paragraph

  This is verbatim
with multiple lines.

This is verbatim with one line at end of stream.
</pre>
==( Headings
==> kwid
= Heading 1

Some stuff

== Heading 2
   Some stuff

=== Heading 3
Some stuff
==> html
<h1>Heading 1</h1>
<p>
Some stuff
</p>
<h2>Heading 2 Some stuff</h2>
<h3>Heading 3 Some stuff</h3>
==( Lists
==> kwid
* one

* two
  things
* three

+ one
+ two
  things

+ three

- one  thing
- two

  things

- three
things

Normal paragraph
==> html
<ul>
<li>one</li>
<li>two things</li>
<li>three</li>
</ul>
<ol>
<li>one</li>
<li>two things</li>
<li>three</li>
</ol>
<dl>
<dt>one</dt>
<dd>
thing
</dd>
<dt>two</dt>
<dd>
things
</dd>
<dt>three</dt>
<dd>
things
</dd>
</dl>
<p>
Normal paragraph
</p>
