Added failing test case due to Perry Wagle.
This commit is contained in:
parent
9e71dc3f48
commit
5611057e06
1 changed files with 7 additions and 0 deletions
|
@ -40,6 +40,13 @@ tests = [ testGroup "inline code"
|
|||
"`*` {.haskell .special x=\"7\"}"
|
||||
=?> para (codeWith ("",["haskell","special"],[("x","7")]) "*")
|
||||
]
|
||||
, testGroup "emphasis and strong"
|
||||
[ "mixed emph and strong" =:
|
||||
"*xxx* ***xxx*** xxx\n*xxx* ***xxx*** xxx"
|
||||
=?> para (emph "xxx" +++ space +++ strong (emph "xxx") +++
|
||||
space +++ "xxx" +++ space +++
|
||||
emph "xxx" +++ space +++ strong (emph "xxx"))
|
||||
]
|
||||
, testGroup "footnotes"
|
||||
[ "indent followed by newline and flush-left text" =:
|
||||
"[^1]\n\n[^1]: my note\n\n \nnot in note\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue