diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-10-11 05:50:28 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-10-11 05:50:28 +0000 |
commit | ad9603231f5fec1ccfb8111c3080d61f375189b9 (patch) | |
tree | b20170fbdc2842766ae59992518a53542b71b9f5 /tests | |
parent | 175ddc3f6e6fec97ffe51b943c02079818be8721 (diff) | |
download | pandoc-ad9603231f5fec1ccfb8111c3080d61f375189b9.tar.gz |
Fixed bug in RST reader: previously, code blocks had to be
indented a full tabstop, but RST allows any amount of indentation.
Resolves Issue #27.
+ removed 'variable' parameter from indentedBlock function in
RST reader, as it is no longer needed
+ updated test suite
+ updated changelog
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1046 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rst-reader.native | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rst-reader.native b/tests/rst-reader.native index 948c04be5..bbd139776 100644 --- a/tests/rst-reader.native +++ b/tests/rst-reader.native @@ -41,7 +41,7 @@ Pandoc (Meta [Str "Pandoc",Space,Str "Test",Space,Str "Suite",Str ":",Space,Str , CodeBlock "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}" , CodeBlock "this code block is indented by one tab" , Para [Str "And",Str ":"] -, CodeBlock " this block is indented by two tabs\n\n These should not be escaped: \\$ \\\\ \\> \\[ \\{" +, CodeBlock "this block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" , Header 1 [Str "Lists"] , Header 2 [Str "Unordered"] , Para [Str "Asterisks",Space,Str "tight",Str ":"] |