-
Notifications
You must be signed in to change notification settings - Fork 18
Home
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.
Consider it done: We are now moved over to github and are functioning well, but some blurriness remains.
Check out our
source code,
documentation,
wiki articles, and
releases. We're
following the
nvie.com
branching model, so we're doing development under the develop
branch, and will use master
as a more stable build.
If you see issues remaining, please raise them and I'll address them ASAP.
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.
-
Build Status