1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-206.xsl
Nick Wellnhofer 5f472f85d0 Create DOCTYPE for HTML version 5
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
2017-02-07 16:44:09 +01:00

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>