summaryrefslogtreecommitdiff
path: root/.config/pancake/unclutter/mediawiki.xsl
blob: 5fd1e06300a54d5b1518f40c61ce0bb65fc3d082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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="/">
    <xsl:apply-templates select="//div[@id='content']" />
  </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>