Template Syntax
Ths syntax of KorTE is similar to liquid and other template engines.
Document not reviewed yet, might be outdated. Please,
let us know
if you find something invalid here.
On this page
KorTE has two kind of markers:
{% block_marker %}
{% block %}...{% endblock %}
{{ expression_marker }}
.
Comment:
{# This is a comment #}
Space trimming:
- Left:
{%- block_marker %}
- Right:
{% block_marker -%}
- Both:
{%- block_marker -%}
Expressions:
- Binary operators:
+
,-
,*
,/
,%
,**
,&
,|
,^
,AND
,OR
,&&
,||
,==
,!=
,<=
,>=
,<
,>
,<=>
,in
,?:
,..
- Unary operators:
+
,-
,~
,!
,NOT
- Ternary operator:
?
,:
- String Literals:
"abc"
or'abc'
- Array Literals:
[1,2,3,4]
- Object Literals:
{"k1": "v1", "k2": "v2"}
- String Interpolation (not implemented in 1.0.0):
"hello #{name}"
- Array Access:
list[0]
,map["key"]
- Filter invoke:
expr|myfilter
orexpr|myfilter(arg1, arg2, ...)
- Property Access:
myobj.key
(if key is a property or a suspend function it will be called) - Function/Method call:
myobj.method(arg1, arg2...)
(ifmethod
is suspend will be called normally)