• Added title-case function.
1 parent 49ca84d commit 8b5bfcc1853c9a6eb65ef5c0e07632c7cffca669
Nigel Stanger authored on 18 Jul 2016
Showing 1 changed file
View
28
modules/basic-text-formatting.xml
<xsl:apply-templates />
</div>
</common>
</template>
 
 
<!--
Convert the input string into Title Case.
$input-string: The string to be converted.
Returns: The converted string.
-->
<function name="infosci:title-case" as="xs:string">
<common>
<xsl:param name="input-string" />
<xsl:variable name="output-string">
<xsl:choose>
<xsl:when test="contains($input-string, ' ')">
<xsl:value-of select="infosci:title-case(substring-before($input-string, ' '))" />
<xsl:text> </xsl:text>
<xsl:value-of select="infosci:title-case(substring-after($input-string, ' '))" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(upper-case(substring($input-string, 1, 1)), substring($input-string, 2))" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:sequence select="$output-string" />
</common>
</function>
</stylesheet>