commits
This reverts commit d438a99f4045b35c029656e43011f2c2e9594363.
Doesn't work in firefox: just results in text-encoded <br/>.
When you have <xsl:output method="html">, empty tags <foo/> are emitted
as <foo></foo>. These are equivalent as far as XML is concerned, but
browsers expecting HTML will treat this as <foo><foo>.
I considered just having the output method be XML, but this seems to
cause a number of harder-to-address problems on the browser side.
References: https://todo.sr.ht/~jonsterling/forester/128
References: https://todo.sr.ht/~jonsterling/forester/67
References: https://todo.sr.ht/~jonsterling/forester/67
Closes: https://todo.sr.ht/~jonsterling/forester/65
Closes: https://todo.sr.ht/~jonsterling/forester/58
When you have <xsl:output method="html">, empty tags <foo/> are emitted
as <foo></foo>. These are equivalent as far as XML is concerned, but
browsers expecting HTML will treat this as <foo><foo>.
I considered just having the output method be XML, but this seems to
cause a number of harder-to-address problems on the browser side.