pandoc/test/command/7920.md
John MacFarlane 8ceea05c75 Markdown reader: remove restriction on identifiers...
so they no longer need to begin with a letter. Closes #7920.
2022-02-23 10:04:15 -08:00

20 lines
204 B
Markdown

```
% 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}
```