mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-25 17:05:41 +00:00
Markdown Reader: Add implicit header ref tests for headers with spaces
This commit is contained in:
@@ -225,6 +225,26 @@ tests = [ testGroup "inline code"
|
||||
"# [hi]\n"
|
||||
=?> headerWith ("hi",[],[]) 1 "[hi]"
|
||||
]
|
||||
, testGroup "Implicit header references"
|
||||
[ "ATX header without trailing #s" =:
|
||||
"# Header\n[header]\n\n[header ]\n\n[ header]" =?>
|
||||
headerWith ("header",[],[]) 1 "Header"
|
||||
<> para (link "#header" "" (text "header"))
|
||||
<> para (text "[header" <> space <> text "]")
|
||||
<> para (text "[" <> space <> text "header]")
|
||||
, "ATX header with trailing #s" =:
|
||||
"# Foo bar #\n[foo bar]\n\n[foo bar ]\n\n[ foo bar]" =?>
|
||||
headerWith ("foo-bar",[],[]) 1 "Foo bar"
|
||||
<> para (link "#foo-bar" "" (text "foo bar"))
|
||||
<> para (text "[foo bar" <> space <> text "]")
|
||||
<> para (text "[" <> space <> text "foo bar]")
|
||||
, "setext header" =:
|
||||
" Header \n=\n\n[header]\n\n[header ]\n\n[ header]" =?>
|
||||
headerWith ("header",[],[]) 1 "Header"
|
||||
<> para (link "#header" "" (text "header"))
|
||||
<> para (text "[header" <> space <> text "]")
|
||||
<> para (text "[" <> space <> text "header]")
|
||||
]
|
||||
, testGroup "smart punctuation"
|
||||
[ test markdownSmart "quote before ellipses"
|
||||
("'...hi'"
|
||||
|
||||
Reference in New Issue
Block a user