mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
These were being parsed as inline notes. Now we disallow an inline note followed by attributes, as this is almost certainly meant to be a span. Closes #11409.
12 lines
157 B
Markdown
12 lines
157 B
Markdown
```
|
|
% pandoc -t native
|
|
text^[sup]{.class}^
|
|
^D
|
|
[ Para
|
|
[ Str "text"
|
|
, Superscript
|
|
[ Span ( "" , [ "class" ] , [] ) [ Str "sup" ] ]
|
|
]
|
|
]
|
|
```
|