diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-23 01:21:21 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-23 01:21:21 +0000 |
commit | f69d9efc8323b202dc0f333036da1c38a2fd270a (patch) | |
tree | 39c31399a986466d4285ce917da6e4141991dcc3 /tests/html-reader.html | |
parent | 1296273c8577465a1bb17161909c2596f84c8bd8 (diff) | |
download | pandoc-f69d9efc8323b202dc0f333036da1c38a2fd270a.tar.gz |
Added definition list support to HTML reader.
Added a test for definition lists to the html-reader test suite.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@781 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/html-reader.html')
-rw-r--r-- | tests/html-reader.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/html-reader.html b/tests/html-reader.html index b89a93299..2c00f48b4 100644 --- a/tests/html-reader.html +++ b/tests/html-reader.html @@ -232,6 +232,15 @@ These should not be escaped: \$ \\ \> \[ \{ </ul> </li> </ul> +<h2>Definition</h2> +<dl> + <dt>Violin</dt> + <dd>Stringed musical instrument.</dd> + <dd>Torture device.</dd> + <dt>Cello</dt> + <dt>Violoncello</dt> + <dd>Low-voiced stringed instrument.</dd> +</dl> <hr /> <h1>HTML Blocks</h1> <p>Simple block on one line:</p> |