diff options
author | John MacFarlane <jgm@berkeley.edu> | 2012-02-07 19:24:09 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2012-02-07 19:41:37 -0800 |
commit | 9538328c6b483041de8a8e610ba9bf94a6600c2f (patch) | |
tree | b3284903873a958318b9b0cc314f54f8a6d6c660 /src | |
parent | 03d69daab6e9d0a683bef4376b6eca8e2d0adae6 (diff) | |
download | pandoc-9538328c6b483041de8a8e610ba9bf94a6600c2f.tar.gz |
Added test case for issue #186 (\$ in latex math).
Diffstat (limited to 'src')
-rw-r--r-- | src/Tests/Readers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Tests/Readers/LaTeX.hs b/src/Tests/Readers/LaTeX.hs index cb8ddefa6..da3e0f6d7 100644 --- a/src/Tests/Readers/LaTeX.hs +++ b/src/Tests/Readers/LaTeX.hs @@ -43,7 +43,7 @@ tests = [ testGroup "basic" , testGroup "math" [ "escaped $" =: - "$x=\\$4" =?> para (math "x=\\$4") + "$x=\\$4$" =?> para (math "x=\\$4") ] , testGroup "space and comments" |