Files
pandoc/test/command/10643.md
John MacFarlane a3ab4b8545 HTML reader: parse inline style elements as RawInline.
This is a cleaner fix to #10643 than the reverted commit 7fe8c92.

Styles are not stripped, but with this change they will not
interfere with inline parsing.

Closes #11246.
2025-12-05 11:14:11 +01:00

156 B

% pandoc -f html -t native
<p>A<style></style>B</p>
^D
[ Para
    [ Str "A"
    , RawInline (Format "html") "<style></style>"
    , Str "B"
    ]
]