mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
Fixed issues with icon-like sequences at the beginning of words. Fixes: #8511
17 lines
207 B
Markdown
17 lines
207 B
Markdown
# Conversion of icon-like sequences followed by alphanum char
|
|
## to Jira
|
|
```
|
|
% pandoc -t jira
|
|
:P :P_ :PA :Pa :P2
|
|
^D
|
|
\:P \:P\_ :PA :Pa :P2
|
|
```
|
|
|
|
## from jira
|
|
```
|
|
% pandoc -f jira -t markdown
|
|
\:PA
|
|
^D
|
|
\\:PA
|
|
```
|