xrust 2.0.3

Support for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="3.0">

  <xsl:template match="child::doc">
    <HTML><BODY><xsl:apply-templates/></BODY></HTML>
  </xsl:template>
  <xsl:template match="child::heading1">
    <H1><xsl:apply-templates/></H1>
  </xsl:template>
  <xsl:template match="child::heading2">
    <H2><xsl:apply-templates/></H2>
  </xsl:template>
  <xsl:template match="child::para">
    <P><xsl:apply-templates/></P>
  </xsl:template>
  <xsl:template match="child::eol">
  </xsl:template>
</xsl:stylesheet>