On Mon, 9 Mar 2026 at 09:14, Schimon Jehudah sch@xxxxxxxxxxxx <
xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:
> Technically, it is not a critical concern; yet
>
> It certainly be helpful to solve, since the attempts to try to censor
> XML in favour of a gimped version of XML (HTML5), it appears that
> internet browsers do not render this XHTML node properly, as it is
> treated as XML which "browsers" (i.e. spyware) ignore.
>
All modern browsers will render namespaced prefixed xml if served as xml
This works
in firefox, chrome and edge at least with the bold being bold and the
link being a link.
<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:body>
<xhtml:p>this <xhtml:b>that</xhtml:b> and the other</xhtml:p>
<xhtml:p>this <xhtml:a href="https://google.com">google
link</xhtml:a></xhtml:p>
</xhtml:body>
</xhtml:html>
|