kwin opened a new issue, #1034:
URL: https://github.com/apache/maven-doxia/issues/1034

   ### Affected version
   
   2.0.0
   
   ### Bug description
   
   With the following Sink method call
   
   ```
   SinkEventAttributeSet attributes = new SinkEventAttributeSet();
   // set different attributes (semantic, style and decoration)
   attributes.addAttributes(SinkEventAttributeSet.LINETHROUGH);
   attributes.addAttributes(SinkEventAttributeSet.BOLD);
   attributes.addAttributes(Semantics.SUPERSCRIPT);
   sink.inline(attributes);
   sink.text("text");
   sink.inline_();
   ```
   
   the `Xhtml5BaseSink` emits invalid HTML5:
   
   ```
   <sup decoration="line-through" style="bold">text</sup>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to