summaryrefslogtreecommitdiff
path: root/docs/src/html-images.xslt
blob: 29b0e1a1e3a70ba6e73b5abe6eec650359b412ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<!--
  vim: sts=2 sw=2 et
  -->
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:html="http://www.w3.org/1999/xhtml">
<xsl:output method='text'/>

<xsl:template match="/">
  <xsl:for-each select='//html:img'>
    <xsl:value-of select='@src'/><xsl:text>
</xsl:text>
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>