Skip to content
Phil Shafer edited this page Jun 28, 2013 · 23 revisions

Welcome to the libslax wiki!

SLAX Logo

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.

News

2013-06-28

libslax is in the process of moving from googlecode to github. This move is taking longer than expected, but should be completed shortly.

Helpful Information

The following information will be helpful for new SLAX users:

Other Useful Links

Clone this wiki locally