Files
pandoc/test/command/11409.md
John MacFarlane d599154394 Markdown reader: allow superscripted spans.
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.
2026-01-21 17:04:49 +01:00

12 lines
157 B
Markdown

```
% pandoc -t native
text^[sup]{.class}^
^D
[ Para
[ Str "text"
, Superscript
[ Span ( "" , [ "class" ] , [] ) [ Str "sup" ] ]
]
]
```