diff --git a/src/main/resources/default/kb/en/user/noodle.html.pasta b/src/main/resources/default/kb/en/user/noodle.html.pasta index 292a7dafe..55e301d72 100644 --- a/src/main/resources/default/kb/en/user/noodle.html.pasta +++ b/src/main/resources/default/kb/en/user/noodle.html.pasta @@ -35,7 +35,7 @@
  • Macro calls: isEmpty("test"). All available macros are listed here: - Tagliatelle Tag Overview. + .
  • If statements: if (condition) { statements; } diff --git a/src/main/resources/default/kb/en/user/tagliatelle.html.pasta b/src/main/resources/default/kb/en/user/tagliatelle.html.pasta index f0deb25b8..da4e7449c 100644 --- a/src/main/resources/default/kb/en/user/tagliatelle.html.pasta +++ b/src/main/resources/default/kb/en/user/tagliatelle.html.pasta @@ -1,4 +1,9 @@ - + Defines the syntax of the Tagliatelle Template Engine. @@ -11,15 +16,15 @@

    - Tagliatelle is template engine which renders a statically typed and compiled templates. This is mainly - used to render the HTML output of the web-server but can be used to generate any form of text output. + Tagliatelle is a template engine which renders statically typed and compiled templates. This is + mainly used to render the HTML output of the web-server but can be used to generate any form of text output.

    - Tagliatelle uses Noodle () as expression language. An expression can be placed anywhere + Tagliatelle uses Noodle () as expression language. An expression can be placed anywhere in the template by prefixing it with an @@, i.e. @@myVariable. If the - boundaries of the expression are unclear, it can be put into parentheses like @@(3+4). - If a tag expects an expression anyway, the "@@" can be omitted. (Note that the "@@" can be escaped by - putting two in a row: @@@@. + boundaries of the expression are unclear, it can be put into parentheses like + @@(3+4). If a tag expects an expression anyway, the "@@" can be omitted. (Note + that the "@@" can be escaped by putting two in a row: @@@@.

    The main part of the templates are made up of special tags (hence the name Tag-liatelle). These tags @@ -29,9 +34,9 @@

    - Tags are organized in tag libraries. Each library has a prefix assigned, e.g. k. All templates for - this tag library are then placed in tags/k/tagName.html.pasta and can be referenced - using <k:tagName>. + Tags are organized in tag libraries. Each library has a prefix assigned, e.g. k. All templates + for this tag library are then placed in tags/k/tagName.html.pasta and can be + referenced using <k:tagName>.

    If a tag supports custom attributes, these are defined in the template via @@ -42,6 +47,7 @@

    - A list of all available tags and macros can be found here: Tagliatelle Tag Overview. + A list of all available tags and macros can be found here: + .