view docs/stylesheets/replaceable.xsl @ 3205:e85fdf0e52ae

corsham,atari: Include OS9GEN in disk image creation This requires ToolShed 2.2 or newer. The os9gen command from previous ToolShed versions would corrupt the disk image.
author Tormod Volden <debian.tormod@gmail.com>
date Sat, 09 Sep 2017 22:37:18 +0200
parents bc28c3bc3769
children
line wrap: on
line source

<?xml version='1.0'?>
<!-- vim:set sts=2 shiftwidth=2 syntax=sgml: -->
<!--
  This is an example of an xmlto stylesheet module to be use when generating HTML
  you call it with xmtto pdf -m replaceable.xsl articles.docbook
  Instead of using italics for the <replaceable> element it uses < and >
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version='1.0'>
<xsl:template match="replaceable">
<xsl:text>&lt;</xsl:text>
<xsl:apply-templates/>
<xsl:text>&gt;</xsl:text>
</xsl:template>

</xsl:stylesheet>