-
Notifications
You must be signed in to change notification settings - Fork 20
Home
Phil Shafer edited this page Jul 1, 2013
·
23 revisions
Welcome to libslax, an open-source implementation of the SLAX language. SLAX is an alternative syntax for XSLT which is tailored for readability and familiarity, following the style of C and Perl. If you like:
if ($this == that) {
expr the/other;
} else {
expr "neither";
}
more than:
<xsl:choose>
<xsl:when test="$this = that">
<xsl:value-of select="the/other"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>neither</xsl:text>
</xsl:otherwise>
</xsl:choose>
please consider using SLAX.
libslax is in the process of moving from googlecode to github. This move is taking longer than expected, but should be completed shortly.
The following information will be helpful for new SLAX users:
-
The TODO page lists remaining work.
-
A Quick Reference Card is available, along with assembly instructions.
-
A discussion group and archive are available.
-
See also the List of Wiki Topics.