diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-08-22 13:52:04 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-08-22 13:52:04 -0400 |
commit | f6da83640fefb0583ad956668a7b79e9d8143226 (patch) | |
tree | 158c34a7535a7c32d71f8f80552fbd7b8da6e09b /tests/misc/html.html | |
parent | d0271ccb1c69c85eff48634710b4cc1cd528cf91 (diff) | |
download | markdown-f6da83640fefb0583ad956668a7b79e9d8143226.tar.gz markdown-f6da83640fefb0583ad956668a7b79e9d8143226.tar.bz2 markdown-f6da83640fefb0583ad956668a7b79e9d8143226.zip |
Updated tests with raw block level html in them. **Note** these tests do not pass now - but they should! We need to fix the bug which the tests were previosuly hiding!
Diffstat (limited to 'tests/misc/html.html')
-rw-r--r-- | tests/misc/html.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/misc/html.html b/tests/misc/html.html index 81b8b62..2f27a3e 100644 --- a/tests/misc/html.html +++ b/tests/misc/html.html @@ -1,8 +1,9 @@ -<p><h1>Block level html</h1></p> +<h1>Block level html</h1> <p>Some inline <b>stuff<b>.<br /> </p> <p>Now some <arbitrary>arbitrary tags</arbitrary>.</p> +<div>More block level html.</div> <p>And of course <script>blah</script>.</p> <p> -<a href="script>stuff</script">this <script>link</a> -</p>
\ No newline at end of file + <a href="script>stuff</script">this <script>link</a> +</p> |