pandoc/test/command/duplicate_attributes.md
John MacFarlane 5608dc01e5 HTML writer: Add warnings on duplicate attribute values.
This prevents emitting invalid HTML.

Ultimately it would be good to prevent this in the types
themselves, but this is better for now.

T.P.Logging: Add DuplicateAttribute constructor to LogMessage.
[API change]
2021-03-10 10:19:40 -08:00

7 lines
206 B
Markdown

```
% pandoc
[span]{.foobar style="color:blue" class="zip" style="color:red"}
^D
[WARNING] Ignoring duplicate attribute style="color:red".
<p><span class="foobar zip" style="color:blue">span</span></p>
```