mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
Make stylesheets with <xsl:output method="html" version="5"/> generate a HTML5 doctype. Fixes bug #778192: https://bugzilla.gnome.org/show_bug.cgi?id=778192
10 lines
194 B
XML
10 lines
194 B
XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:output method="html" version="5"/>
|
|
|
|
<xsl:template match="/">
|
|
<html/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|