mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
Our recent relaxing of escaping (#9386) caused problems for things like emphasized `-` characters that were rendered using `#strong[-]#`. This now gets rendered as `#strong[\-]`. Closes #9478.
10 lines
81 B
Markdown
10 lines
81 B
Markdown
```
|
|
% pandoc -t typst --wrap=preserve
|
|
**- a -
|
|
- b**
|
|
^D
|
|
#strong[\- a -
|
|
\- b]
|
|
```
|
|
|