Mercurial > hg > Members > kono > nitros9-code
view docs/stylesheets/replaceable.xsl @ 2798:b70d93f8d7ce lwtools-port
Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors.
Updated level1/coco1/modules/makefile & level2/coco3/modules/makefile
so that correct values would be sent to assembler when
building superdesc.asm for s(x).dd and i(x).dd descriptors.
author | drencor-xeen |
---|---|
date | Mon, 28 Jan 2013 16:13:05 -0600 |
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><</xsl:text> <xsl:apply-templates/> <xsl:text>></xsl:text> </xsl:template> </xsl:stylesheet>