diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-11-19 13:28:10 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-11-19 13:28:10 -0800 |
| commit | 4b4771f062a227153109d0ba2f9d125c82f411a8 (patch) | |
| tree | 4c1b752c619e1951a7d1eff72a2a6bc0c4460b9a /test/command | |
| parent | bb0fd13bcba5459e48bafc9be2b2e2d573e22863 (diff) | |
Docx reader: Support parsing of highlighted text.
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/7743.md | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/test/command/7743.md b/test/command/7743.md new file mode 100644 index 000000000..6e2e0fbfb --- /dev/null +++ b/test/command/7743.md @@ -0,0 +1,56 @@ +``` +% pandoc -f markdown+mark -t html +==Hi== +^D +<p><mark>Hi</mark></p> +``` + +``` +% pandoc -f markdown+mark -t latex +==Hi== +^D +\hl{Hi} +``` + +``` +% pandoc -f markdown+mark -t rst +==Hi== +^D +:mark:`Hi` +``` + +``` +% pandoc -f html -t markdown+mark +<mark>Hi</mark> +^D +==Hi== +``` + +``` +% pandoc -f html -t markdown +<mark>Hi</mark> +^D +[Hi]{.mark} +``` + +``` +% pandoc -f rst -t markdown+mark +:mark:`Hi` +^D +==Hi== +``` + +``` +% pandoc -f markdown+mark -t docx | pandoc -f docx -t markdown+mark +==Hi== +^D +==Hi== +``` + +``` +% pandoc -f latex -t markdown+mark +\hl{Hi} +^D +==Hi== +``` + |
