aboutsummaryrefslogtreecommitdiff
path: root/tests/markdown-reader-more.native
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 05:33:24 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 05:33:24 +0000
commit8671bc5a1be38f6555e34d7ccc542ebbe91f69fd (patch)
treeb1dcbf74eb45462d3f6cb0493792fe2a94daf680 /tests/markdown-reader-more.native
parent94841b7602f3465cdb7a452989975d08e43fc694 (diff)
downloadpandoc-8671bc5a1be38f6555e34d7ccc542ebbe91f69fd.tar.gz
Markdown reader: Treat a backslash followed by a newline as hard linebreak.
Resolves Issue #154. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1646 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/markdown-reader-more.native')
-rw-r--r--tests/markdown-reader-more.native4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/markdown-reader-more.native b/tests/markdown-reader-more.native
index 0e76ace86..e6665591a 100644
--- a/tests/markdown-reader-more.native
+++ b/tests/markdown-reader-more.native
@@ -19,5 +19,7 @@ Pandoc (Meta [] [] "")
, Header 2 [Str "Commented",Str "-",Str "out",Space,Str "list",Space,Str "item"]
, BulletList
[ [ Plain [Str "one"]
- , RawHtml "<!--\n- two\n-->" ], [ Plain [Str "three"] ] ] ]
+ , RawHtml "<!--\n- two\n-->" ], [ Plain [Str "three"] ] ]
+, Header 2 [Str "Backslash",Space,Str "newline"]
+, Para [Str "hi",LineBreak,Str "there"] ]