blob: 8a54b7c7b3bcdab7ba3d1fff547cc2f2419a2ff9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- Import our general html stylesheet -->
<xsl:include href="style-html.xsl"/>
<!-- What extension to use for resulting html. -->
<xsl:param name="html.ext" select="concat('.',concat(/book/@lang,'.html'))"/>
</xsl:stylesheet>
|