diff options
Diffstat (limited to 'icespider/unittests/xslt/transform.xslt')
-rw-r--r-- | icespider/unittests/xslt/transform.xslt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/icespider/unittests/xslt/transform.xslt b/icespider/unittests/xslt/transform.xslt new file mode 100644 index 0000000..b70c90c --- /dev/null +++ b/icespider/unittests/xslt/transform.xslt @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes"/> + <xsl:template match="/SomeModel"> + <html> + <head> + <title>Some Model</title> + </head> + <body> + <p><b>value</b>: <xsl:value-of select="value"/></p> + </body> + </html> + </xsl:template> +</xsl:stylesheet> |