pentext/xml/xslt/generic.xslt
Peter Mosmans 121bc5b268 Added radicallyopensecurity/templates/xml
This version has been tagged 'templates' in the original repository
2016-07-25 22:49:31 -07:00

27 lines
904 B
HTML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="@id">
<!-- copy all ids! -->
<xsl:copy/>
</xsl:template>
<xsl:template match="@break">
<xsl:choose>
<!-- section-type elements can have optional breaks -->
<xsl:when test=".='before'">
<xsl:attribute name="break-before">page</xsl:attribute>
</xsl:when>
<xsl:when test=".='after'">
<xsl:attribute name="break-after">page</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="@*"/>
<!-- hide any attributes that are not explicitly handled -->
</xsl:stylesheet>