File: extract-markup.xsl

package info (click to toggle)
eclipse-linuxtools 1.0.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 69,212 kB
  • sloc: java: 224,575; xml: 23,980; ansic: 15,426; python: 458; cpp: 279; sh: 251; makefile: 48
file content (9 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:mw="http://www.mediawiki.org/xml/export-0.3/">
	<xsl:output  method="text"/>
	
	<xsl:template match="/">
		<xsl:value-of select="//mw:text"/>
	</xsl:template>
</xsl:stylesheet>