Closed aubertc closed 4 years ago
Does it still complain if you change it to
<col style="width: 23%" />
Nope.
There is an update, and now it complains with
Info: Trailing slash on void elements has no effect and interacts badly with unquoted attribute values.
From line …
<col style="width: 23%" />
This code could be replaced by
<col style="width: 23%">
to comply with this validator.
Well, we try to produce polyglot HTML that is also valid XHTML. That's because we need XHTML for valid EPUBv3. For background see e.g. #5146.
Thanks a lot for the context, it makes sense.
The following
temp.md
filewhen compiled with
produces a table that begins with
which causes e.g. the Nu HTML Checker to complain about
Pandoc 2.9.2.1
Maybe this is documented somewhere, but I could not find where: what is the cause / justification / rationale for this? This error is not present with the
-standalone
option.