|
| Description: |
Note 1: the affects version(s) needs to be refined. Note 2: this issue is reported in order to fix XWIKI-21973 h2. Reproduction steps
Create a content with a macro followed by a parameter, for instance {code:java} {{icon name="add"/}}(% id="test" %) {code} And converts it to annotated (x)html h2. Expected
Then parameters produce an empty span after the macro. {code:html} < p><!--startmacro:icon|-|name="add"--><!--stopmacro--> <span id="test"></span></p> {code} h2. Actual
The macro is wrapped in a span with the parameters are attributes. {code:html} < p><span id="test"><!--startmacro:icon|-|name="add"--><!--stopmacro--> </span></p> {code} |
|