- Issue created by @smulvih2
The cite plugin was added to the 6.1.x branch of WxT, although it is disabled by default. It is currently defined as a widget (container element) but this causes some issues. Since it is defined as a container element, it cannot be used inside of a mark element, like links. We want the cite plugin to function like the bold plugin, so it can be used on any text.
If I have this markup:
<a href="/">This is some text and a cite element</a>
Then I try to make some text within the <a>
element a cite, it renders this:
<a href="/">This is some text and a <cite><a href="/">cite element</a></cite></a>
I expect this:
<a href="/">This is some text and a <cite>cite element</cite></a>
Active
6.1
Code