diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-11-20 09:17:14 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-11-20 09:17:14 -0800 |
commit | c647948ff186411c2dc93ae92d134805726aea54 (patch) | |
tree | 235ff18ebbb559a49c13570d9f160e90d1a552f6 /test | |
parent | d2862421315a0be59e2e2ec088b9b24928224aa2 (diff) | |
download | pandoc-c647948ff186411c2dc93ae92d134805726aea54.tar.gz |
`commonmark_x`: replace `auto_identifiers` with `gfm_auto_identifiers`.
`commonmark_x` never actually supported `auto_identifiers` (it
didn't do anything), because the underlying library implements
gfm-style identifiers only.
Attempts to add the `autolink_identifiers` extension to
`commonmark` will now fail with an error.
Closes #6863.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/4742.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/4742.md b/test/command/4742.md index 600880e90..7be9a6077 100644 --- a/test/command/4742.md +++ b/test/command/4742.md @@ -2,7 +2,7 @@ Check that the commonmark reader handles the `ascii_identifiers` extension properly. ``` -% pandoc -f commonmark+auto_identifiers+gfm_auto_identifiers+ascii_identifiers -t native +% pandoc -f commonmark+gfm_auto_identifiers+ascii_identifiers -t native # 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"]] @@ -13,7 +13,7 @@ formed from \9888 and \65039. The latter is a combining mark, so it survives... ``` -% pandoc -f commonmark+auto_identifiers+gfm_auto_identifiers-ascii_identifiers -t native +% pandoc -f commonmark+gfm_auto_identifiers-ascii_identifiers -t native # 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"]] |