pentext/xml/xslt/html_secrets.xslt
2019-06-04 13:58:12 +02:00

19 lines
552 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:import href="secrets.xslt"/>
<xsl:template name="censoredInline">
<span class="censoredtext">[ CENSORED ]</span>
</xsl:template>
<xsl:template name="censoredBlock">
<div class="censoredblock">
<xsl:text>[ CENSORED ]</xsl:text>
</div>
</xsl:template>
</xsl:stylesheet>