Tidied up documentation file a bit (not yet sufficiently)

This commit is contained in:
Simon Brooke 2018-03-18 13:28:07 +00:00
parent 2fc53be9e7
commit dacc4a6429
4 changed files with 484 additions and 695 deletions

16
remove-edit-sections.xslt Normal file
View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:template match="*[@class='editsection']">
</xsl:template>
<!-- just copy anything we can't match -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>