aboutsummaryrefslogtreecommitdiff
path: root/tests/markdown-reader-more.native
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-03-06 02:42:15 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-03-06 02:42:15 +0000
commit76e6c071d09cfcba8d8c2097756e581157d43820 (patch)
tree35856602412a3519df6970e39e03b5d62056151c /tests/markdown-reader-more.native
parentf5e00c50b8ec7c5687feae6278869205a1d6ab60 (diff)
downloadpandoc-76e6c071d09cfcba8d8c2097756e581157d43820.tar.gz
Disallow blank lines in inline code span.
Also added additional test cases for markdown code spans. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1860 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/markdown-reader-more.native')
-rw-r--r--tests/markdown-reader-more.native8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/markdown-reader-more.native b/tests/markdown-reader-more.native
index a39965970..ccf29329e 100644
--- a/tests/markdown-reader-more.native
+++ b/tests/markdown-reader-more.native
@@ -21,5 +21,11 @@ Pandoc (Meta {docTitle = [Str "Title",Space,Str "spanning",Space,Str "multiple",
[ [ Plain [Str "one"]
, RawHtml "<!--\n- two\n-->" ], [ Plain [Str "three"] ] ]
, Header 2 [Str "Backslash",Space,Str "newline"]
-, Para [Str "hi",LineBreak,Str "there"] ]
+, Para [Str "hi",LineBreak,Str "there"]
+, Header 2 [Str "Code",Space,Str "spans"]
+, Para [Code "hi\\"]
+, Para [Code "hi there"]
+, Para [Code "hi````there"]
+, Para [Str "`",Str "hi"]
+, Para [Str "there",Str "`"] ]