Forked from jcfr/slicer-4.0-module-acknowledgements.xsl
Last active
December 16, 2015 14:59
-
-
Save finetjul/5452723 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:transform version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="text" indent="yes" encoding="UTF-8"/> | |
<xsl:template name="newline"><xsl:text> </xsl:text></xsl:template> | |
<xsl:template match="/executable"> | |
<xsl:text>:'''Title:''' </xsl:text><xsl:value-of select="title"/><xsl:call-template name="newline"/> | |
<xsl:text>:'''Author(s)/Contributor(s):''' </xsl:text><xsl:value-of select="contributor"/><xsl:call-template name="newline"/> | |
<xsl:text>:'''License:''' </xsl:text><xsl:value-of select="license"/><xsl:call-template name="newline"/> | |
<xsl:text>:'''Acknowledgements:''' </xsl:text><xsl:value-of select="acknowledgements"/><xsl:call-template name="newline"/> | |
</xsl:template> | |
</xsl:transform> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jcfr can you also update acknowledgents with this? thanks !