diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-02-23 10:00:49 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-02-23 10:04:15 -0800 |
| commit | 8ceea05c7591d731338b965249c6d636854df8ed (patch) | |
| tree | 6a72dea4266ae950703e8c410d0baf9863af2335 /test/command | |
| parent | ba337866e4bbff3c512acc48ff89c916e6deb6c9 (diff) | |
Markdown reader: remove restriction on identifiers...
so they no longer need to begin with a letter. Closes #7920.
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/7920.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/7920.md b/test/command/7920.md new file mode 100644 index 000000000..6bfac3af6 --- /dev/null +++ b/test/command/7920.md @@ -0,0 +1,20 @@ +``` +% pandoc -t native +[hi]{#123} +^D +[ Para [ Span ( "123" , [] , [] ) [ Str "hi" ] ] ] +``` + +``` +% pandoc -t markdown +[hi]{#123} +^D +[hi]{#123} +``` + +``` +% pandoc -t markdown +# Hi {#123} +^D +# Hi {#123} +``` |
