mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
For paragraphs beginning with literal `#`, `*`, or other things that would otherwise produce lists, we insert `<nowiki></nowiki>` rather than (as previously) `\`. `\` does not work to escape these. Closes #11563.
15 lines
353 B
Markdown
15 lines
353 B
Markdown
```
|
||
% pandoc -t mediawiki
|
||
This is a normal sentence with a manual text footnote\*
|
||
|
||
\* The footnote explains why it couldn't just be inside parentheses
|
||
|
||
\#foobar \#foobar
|
||
^D
|
||
This is a normal sentence with a manual text footnote*
|
||
|
||
<nowiki></nowiki>* The footnote explains why it couldn’t just be inside parentheses
|
||
|
||
<nowiki></nowiki>#foobar #foobar
|
||
```
|