shithub: werc

ref: cfabe41f3a40bbfe302bf2d1a0965d6e1fc7bba7
dir: /sites/werc.cat-v.org/docs/rc_template_lang.md/

View raw version
The Rc Template Language
========================

Implemented by Kris, thanks!

Basic syntax:

* Lines starting with % are executed as rc commands, the resulting output is inserted in the document.
* use %{ and %} to delimit multi line sections of rc code (note the lack of space between % and { or }!
* To 'inline' the value of an environment variable use `%($my_var%)`

That is basically it!


Examples
--------

Loops

    <ul>
    % for(i in a b c) {
    %   echo '<li>'$i'</li>'
    % }
    </uL>
 
Is equivalent to: 

    <ul>
    % for(i in a b c) {
    <li>%($i%)</li>
    % }
    </uL>

and results in this output:

    <ul>
    <li>a</li>
    <li>b</li>
    <li>c</li>
    </ul>