Forked from jcfr/slicer-4.0-module-parameterdescription.xsl
Last active
December 16, 2015 14:09
-
-
Save finetjul/5446359 to your computer and use it in GitHub Desktop.
Add description to "parameters" xml element
Add 2 levels "parameters".
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:for-each select="parameters"> | |
<xsl:text>* '''</xsl:text><xsl:value-of select="label"/>'''<xsl:text>: </xsl:text><xsl:value-of select="description"/><xsl:call-template name="newline"/> | |
<xsl:for-each select="*[descendant::label]"> | |
<xsl:text>** '''</xsl:text><xsl:value-of select="label"/>'''<xsl:text>: </xsl:text><xsl:value-of select="description"/><xsl:call-template name="newline"/> | |
<xsl:for-each select="*[descendant::label]"> | |
<xsl:text>*** '''</xsl:text><xsl:value-of select="label"/>'''<xsl:text>: </xsl:text><xsl:value-of select="description"/><xsl:call-template name="newline"/> | |
</xsl:for-each> | |
</xsl:for-each> | |
</xsl:for-each> | |
</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 please integrate those changes into slicer.org wiki ?
This should display correctly the updated (r21908) doc of Models: http://www.slicer.org/slicerWiki/index.php?title=Documentation/Nightly/Modules/Models
Thanks.