Skip to content

Instantly share code, notes, and snippets.

@ilkeryilmaz
Last active September 4, 2015 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilkeryilmaz/df5cd4641d027f78c59f to your computer and use it in GitHub Desktop.
Save ilkeryilmaz/df5cd4641d027f78c59f to your computer and use it in GitHub Desktop.
XSL Code Snippets
/*
* If else
*/
<xsl:choose>
<xsl:when test="$language">
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
/*
* Değişken oluşturma kısa if gibi kullanılabilir
*/
<xsl:variable name="veriable_name">
<xsl:if test="Data">Veriable Data</xsl:if>
</xsl:variable>
{$veriable_name}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment