aboutsummaryrefslogtreecommitdiff
path: root/test/command/nested-spanlike.md
AgeCommit message (Collapse)Author
2022-08-01Markdown reader: allow special span classes in any positionAlbert Krewinkel
2022-07-25HTML writer: Allow "spanlike" classes to be combined.John MacFarlane
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.