mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
563 B
563 B
% 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 -o - | pandoc -f docx -t markdown+mark
==Hi==
^D
==Hi==
% pandoc -f latex -t markdown+mark
\hl{Hi}
^D
==Hi==