1148
|
1 <?xml version='1.0'?>
|
|
2 <!-- vim:set sts=2 shiftwidth=2 syntax=sgml: -->
|
|
3 <!--
|
|
4 This is an example of an xmlto stylesheet module to be use when generating HTML
|
|
5 you call it with xmtto pdf -m replaceable.xsl articles.docbook
|
|
6 Instead of using italics for the <replaceable> element it uses < and >
|
|
7 -->
|
|
8 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
9 version='1.0'>
|
|
10 <xsl:template match="replaceable">
|
|
11 <xsl:text><</xsl:text>
|
|
12 <xsl:apply-templates/>
|
|
13 <xsl:text>></xsl:text>
|
|
14 </xsl:template>
|
|
15
|
|
16 </xsl:stylesheet>
|