diff options
author | Mike Dirolf <mike@dirolf.com> | 2012-01-14 13:10:44 -0500 |
---|---|---|
committer | Mike Dirolf <mike@dirolf.com> | 2012-01-14 13:10:44 -0500 |
commit | a2377e1129331430998de821ed3abf38247edca1 (patch) | |
tree | d50080a6cb7e3d8c0cd044e9c79dc7fc1ce84fd1 /tests/html4_safe/html_then_blockquote.html | |
parent | 542324b626e96eb368c1cac34beba2b95af5deb7 (diff) | |
download | markdown-a2377e1129331430998de821ed3abf38247edca1.tar.gz markdown-a2377e1129331430998de821ed3abf38247edca1.tar.bz2 markdown-a2377e1129331430998de821ed3abf38247edca1.zip |
When safe mode is 'escape', don't allow bad html to stop further processing.
See tests/html4_safe/html_then_blockquote.(txt|html).
It looks like having unclosed block-level html elements was causing
further processing not to happen, even in the case where we're
escaping HTML. Since we're escaping HTML, it seems like it shouldn't
affect processing at all. This changes output results in a couple
of other tests, but the new output seems reasonable to me.
Diffstat (limited to 'tests/html4_safe/html_then_blockquote.html')
-rw-r--r-- | tests/html4_safe/html_then_blockquote.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/html4_safe/html_then_blockquote.html b/tests/html4_safe/html_then_blockquote.html new file mode 100644 index 0000000..5833cd4 --- /dev/null +++ b/tests/html4_safe/html_then_blockquote.html @@ -0,0 +1,6 @@ +<p>to:</p> +<p><td /><td style="text-align: center; white-space: nowrap;"><br /></p> +<blockquote> +<p>3) You don't need to alter all localization files. + Adding the new labels to the en_US files will do it.</p> +</blockquote>
\ No newline at end of file |