summaryrefslogtreecommitdiff
path: root/unclutter/mediawiki.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'unclutter/mediawiki.xsl')
-rw-r--r--unclutter/mediawiki.xsl26
1 files changed, 26 insertions, 0 deletions
diff --git a/unclutter/mediawiki.xsl b/unclutter/mediawiki.xsl
new file mode 100644
index 0000000..1b88b4a
--- /dev/null
+++ b/unclutter/mediawiki.xsl
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:output method="html" indent="yes"/>
+
+ <xsl:template match="/">
+ <html>
+ <body>
+ <xsl:apply-templates select="//div[@id='content']" />
+ </body>
+ </html>
+ </xsl:template>
+
+ <!-- Cut these out -->
+ <xsl:template match="span[@class='mw-editsection']" />
+ <xsl:template match="ul[@id='page-actions']" />
+ <xsl:template match="div[@class='mw-ui-icon mw-ui-icon-element indicator']" />
+ <xsl:template match="a[@class='mw-ui-icon mw-ui-icon-element mw-ui-icon-edit-enabled edit-page']" />
+
+ <!-- Catch-all: copy and apply templates -->
+ <xsl:template match="node()" priority="0">
+ <xsl:copy>
+ <xsl:copy-of select="@*" />
+ <xsl:apply-templates />
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>