openhtmltopdf icon indicating copy to clipboard operation
openhtmltopdf copied to clipboard

<br> in <dd> causes PDF/UA validation warnings

Open jochenberger opened this issue 1 year ago • 2 comments

If I have a multi-line <dd> content, I get "Possibly inappropriate use of a "Span" structure element" warnings in PAC2021.

grafik

The HTML is

<html lang="en-US">
  <head>
    <title>DD test</title>
  </head>
  <body>
    <dl>
      <dt>Foo</dt>
      <dd>Bar<br>Baz
      </dd>
    </dl>
  </body>
</html>

The resulting PDF is dd-test.pdf

jochenberger avatar Oct 12 '22 12:10 jochenberger