VanDyke is a React template engine and still under development with a first ALPHA release.
Test cases and more detailed documentation are on the way ...
<element/>
Native self closing HTML element or React component without attributes
<element attribute attributeN/>
Native self closing HTML element or React component with one or more attributes
<element> content </element>
Native HTML element or React component with element body and without attributes
content
can be multiple items ofContent
<element attribute attributeN> content </element>
Native self closing HTML element or React component with element body and with one or more attributes
content
can be multiple items ofContent
attribute
Simple attribute without given value, value will be interpreted as true
attribute="simple string"
Simple string attribute as known in HTML
attribute=value
Pass an advanced value to this attribute
value
can be anExpression
,Chain
orHelper
Content can be a mix of expressions
, elements
, helpers
and text
. The template whole needs to return a single root element
.
{expression}
Simple expression to provide advanced content
expression
can beBoolean
,Number
,Variable
orString
"foo"
Native JavaScript string with double quotes
1.234
Native Javascript number positive
-1.1234
Native Javascript number negative
true
Native Javascript boolean true
false
Native Javascript boolean false
name
In scope variable access
@name
Contextual variable access (e.g. @index
in each helper)
../name
Parent scope variable access
../../sub.object.name
Path variable access
{#helper/}
Simple helper without any arguments and body
{#helper argument/}
Simple helper with argument
argument
can be anBoolean
,Number
,Variable
orString
In element body:
{#helper} content {/helper}
Block helper containing content
content
can be multiple items ofContent
{#helper argument} content {/helper}
Block helper with argument and containing content
argument
can be anBoolean
,Number
,Variable
orString
content
can be multiple items ofContent
{#helper argument} content {:else} content {/helper}
Block helper with argument, containing content and alternate content
argument
can be anBoolean
,Number
,Variable
orString
content
can be multiple items ofContent
In attribute value:
{#helper} content {/helper}
Block helper containing content
content
can beBoolean
,Chain
,Helper
,Number
,Variable
orString
{#helper argument} content {/helper}
Block helper with argument and containing content
argument
can be anBoolean
,Number
,Variable
orString
content
can beBoolean
,Chain
,Helper
,Number
,Variable
orString
{#helper argument} content {:else} content {/helper}
Block helper with argument, containing content and alternate content
argument
can be anBoolean
,Number
,Variable
orString
content
can beBoolean
,Chain
,Helper
,Number
,Variable
orString
Concat multiple items of Boolean
, Helper
, Number
, Variable
and String
to a single String.
Example: {foo + ' bar ' + bar}