diff options
| author | Elliot Bobrow <[email protected]> | 2022-07-06 13:10:24 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-06 22:10:24 +0200 |
| commit | 7fdc01ac0d91a037b48847939b762654174b4125 (patch) | |
| tree | 427d3c4cfc26e67e6a72ead286f75ed1738cfe5f /test/command | |
| parent | befa9d130181ff99d155a6df454c40fba0d9736a (diff) | |
Use `formatCode` from #7525 in HTML and MediaWiki (#8162)
Move formatting from inside inline code elements to the outside in order
to retain formatting.
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/7525.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command/7525.md b/test/command/7525.md index 788c749a6..0283b19a8 100644 --- a/test/command/7525.md +++ b/test/command/7525.md @@ -17,3 +17,17 @@ ] ] ``` + +``` +% pandoc -f html -t native +<code><b>hi</b></code> +^D +[ Plain [ Strong [ Code ( "" , [] , [] ) "hi" ] ] ] +``` + +``` +% pandoc -f mediawiki -t native +<code>''hey''</code> +^D +[ Para [ Emph [ Code ( "" , [] , [] ) "hey" ] ] ] +``` |
