mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-31 02:04:53 +08:00
ac7fa3da4d
Previously classes like "underline" and "marked" had to
be the first class in a span in order for the span to be
interpreted as a "ul" or "mark" element. This commit allows
these special classes to be "stacked," e.g.
`[test]{.mark .underline}`; in addition, the special classes are no
longer required to come first in the list of classes.
See #8194 for context.
155 B
155 B
% pandoc -f markdown -t html
[test]{.foo .underline #bar .smallcaps .kbd}
^D
<p><u id="bar"><span class="smallcaps"><kbd>test</kbd></span></u></p>