# Definition Lists

```````````````````````````````` example
Term
: definition
.
<dl>
<dt>Term</dt>
<dd>definition</dd>
</dl>
````````````````````````````````

```````````````````````````````` example
Term
: definition1
: definition2
.
<dl>
<dt>Term</dt>
<dd>definition1</dd>
<dd>definition2</dd>
</dl>
````````````````````````````````

```````````````````````````````` example
Term
: definition1
: definition2

paragraph
.
<dl>
<dt>Term</dt>
<dd>definition1</dd>
<dd>definition2</dd>
</dl>
<p>paragraph</p>
````````````````````````````````

```````````````````````````````` example
First Term
: This is the definition of the first term.

Second Term
: This is one definition of the second term.
: This is another definition of the second term.
.
<dl>
<dt>First Term</dt>
<dd>This is the definition of the first term.</dd>
<dt>Second Term</dt>
<dd>This is one definition of the second term.</dd>
<dd>This is another definition of the second term.</dd>
</dl>
````````````````````````````````

```````````````````````````````` example
First Term
: This is the definition of the first term.

Second Term
: This is one definition of the second term.
: This is another definition of the second term.

paragraph
.
<dl>
<dt>First Term</dt>
<dd>This is the definition of the first term.</dd>
<dt>Second Term</dt>
<dd>This is one definition of the second term.</dd>
<dd>This is another definition of the second term.</dd>
</dl>
<p>paragraph</p>
````````````````````````````````

```````````````````````````````` example
First Term
: This is the definition of the first term.
Not Second Term
: This is one definition of the second term.
: This is another definition of the second term.

paragraph
.
<dl>
<dt>First Term</dt>
<dd>This is the definition of the first term.
Not Second Term</dd>
<dd>This is one definition of the second term.</dd>
<dd>This is another definition of the second term.</dd>
</dl>
<p>paragraph</p>
````````````````````````````````

## Definition with Multiple Lines

```````````````````````````````` example
Term

: definition
.
<dl>
<dt>Term</dt>
<dd><p>definition</p>
</dd>
</dl>
````````````````````````````````


```````````````````````````````` example
Term
: foo

  bar
.
<dl>
<dt>Term</dt>
<dd><p>foo</p>
<p>bar</p>
</dd>
</dl>
````````````````````````````````

Leading 4 white spaces

```````````````````````````````` example
Term
:   foo

    bar
.
<dl>
<dt>Term</dt>
<dd><p>foo</p>
<p>bar</p>
</dd>
</dl>
````````````````````````````````


```````````````````````````````` example
Term
:   foo

        bar
.
<dl>
<dt>Term</dt>
<dd><p>foo</p>
<pre><code>bar</code></pre>
</dd>
</dl>
````````````````````````````````

```````````````````````````````` example
Term
:   foo

    - bar
    - baz
.
<dl>
<dt>Term</dt>
<dd><p>foo</p>
<ul>
<li>bar</li>
<li>baz</li>
</ul>
</dd>
</dl>
````````````````````````````````
