2018-06-29 10:41:26 +02:00
|
|
|
Check that the commonmark reader handles the `ascii_identifiers`
|
|
|
|
extension properly.
|
|
|
|
|
|
|
|
```
|
2020-11-20 18:17:14 +01:00
|
|
|
% pandoc -f commonmark+gfm_auto_identifiers+ascii_identifiers -t native
|
2018-06-29 10:41:26 +02:00
|
|
|
# non ascii ⚠️ räksmörgås
|
|
|
|
^D
|
|
|
|
[Header 1 ("non-ascii--raksmorgas",[],[]) [Str "non",Space,Str "ascii",Space,Str "\9888\65039",Space,Str "r\228ksm\246rg\229s"]]
|
|
|
|
```
|
|
|
|
|
2018-11-12 05:45:38 +01:00
|
|
|
Note that the emoji here is actually a composite character,
|
|
|
|
formed from \9888 and \65039. The latter is a combining mark,
|
|
|
|
so it survives...
|
|
|
|
|
2018-06-29 10:41:26 +02:00
|
|
|
```
|
2020-11-20 18:17:14 +01:00
|
|
|
% pandoc -f commonmark+gfm_auto_identifiers-ascii_identifiers -t native
|
2018-06-29 10:41:26 +02:00
|
|
|
# non ascii ⚠️ räksmörgås
|
|
|
|
^D
|
|
|
|
[Header 1 ("non-ascii-\65039-r\228ksm\246rg\229s",[],[]) [Str "non",Space,Str "ascii",Space,Str "\9888\65039",Space,Str "r\228ksm\246rg\229s"]]
|
|
|
|
```
|
|
|
|
|
2018-11-11 22:27:25 +01:00
|
|
|
`gfm` should have `ascii_identifiers` disabled by default.
|
2018-06-29 10:41:26 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f gfm -t native
|
|
|
|
# non ascii ⚠️ räksmörgås
|
|
|
|
^D
|
2018-11-11 22:27:25 +01:00
|
|
|
[Header 1 ("non-ascii-\65039-r\228ksm\246rg\229s",[],[]) [Str "non",Space,Str "ascii",Space,Str "\9888\65039",Space,Str "r\228ksm\246rg\229s"]]
|
2018-06-29 10:41:26 +02:00
|
|
|
```
|