mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-30 17:59:17 +08:00
6956176c19
Also escape the `#` character. Closes #11362. An alternative solution, raised in #11362, would be to rely less on escaping and simply always use doubled delimiters. However, there would still be a need for escaping, since one might use a literal `##` (for example)>
18 lines
321 B
Markdown
18 lines
321 B
Markdown
```
|
|
% pandoc -f markdown -t asciidoc
|
|
This is a _test_[^1].
|
|
|
|
And yet another **one**[^1].
|
|
|
|
We can also try to write #hashtags [this]{.test}.
|
|
|
|
[^1]: Test footnote.
|
|
^D
|
|
This is a __test__footnote:[Test footnote.].
|
|
|
|
And yet another **one**footnote:[Test footnote.].
|
|
|
|
We can also try to write ++#++hashtags [.test]#this#.
|
|
|
|
```
|