<Overfiend> is there a filter that will take input and strip all HTML/XML tags out of it?

Well, unhtml didn’t work out well for him, so i wrote this small xslt stylesheet. Unfortunately he was not able to use it due to undefined entities in his document. (The debian-installer docbook files make heavy use of entities, including some generated dynamically on build (build-arch etc.))

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- output as plain text -->
<xsl:output method="text" encoding="UTF-8"/>
<!-- descend through any node() -->
<xsl:template match="node()"><xsl:apply-templates/></xsl:template>
<!-- dump all text nodes -->
<xsl:template match="text()"><xsl:copy/></xsl:template>
</xsl:stylesheet>

P.S. added an “xml” section, if you want to subscribe to xml related comments only.