summaryrefslogtreecommitdiff
path: root/.config/pancake/unclutter/duckduckgo.xsl
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2017-12-29 06:25:00 +0300
committerdefanor <defanor@uberspace.net>2017-12-29 06:25:00 +0300
commitcdfc88c3fbe175e55390612971960c5b0061f224 (patch)
tree73512e3c71d8c8b5be07591713c8a79a860b4e5b /.config/pancake/unclutter/duckduckgo.xsl
parent032ac6aa1f5297a334d51efc5ceb0109b3ad6197 (diff)
Remove uncluttering XSLTs
They are included into pancake now
Diffstat (limited to '.config/pancake/unclutter/duckduckgo.xsl')
-rw-r--r--.config/pancake/unclutter/duckduckgo.xsl24
1 files changed, 0 insertions, 24 deletions
diff --git a/.config/pancake/unclutter/duckduckgo.xsl b/.config/pancake/unclutter/duckduckgo.xsl
deleted file mode 100644
index 2bf6e2b..0000000
--- a/.config/pancake/unclutter/duckduckgo.xsl
+++ /dev/null
@@ -1,24 +0,0 @@
-<?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>
- DuckDuckGo
- <xsl:for-each select="//tr[not(@class) or @class!='result-sponsored']">
- <xsl:for-each select="td/a[@class='result-link']">
- <br />
- <br />
- <a href="{@href}">
- <xsl:value-of select="." />
- </a>
- </xsl:for-each>
- <xsl:for-each select="td[@class='result-snippet']">
- <br />
- <xsl:value-of select="." />
- </xsl:for-each>
- </xsl:for-each>
- </body>
- </html>
- </xsl:template>
-</xsl:stylesheet>