Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created May 16, 2012 11:49
Show Gist options
  • Save netsi1964/2709783 to your computer and use it in GitHub Desktop.
Save netsi1964/2709783 to your computer and use it in GitHub Desktop.
XSLT - entities example
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [<!ENTITY netsi "netsi1964@gmail.com">]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="no"/>
<xsl:template match="/">
<h1>&amp;netsi; bliver til "&netsi;"</h1>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment