diff --git a/docs/userGuide/markBindSyntaxOverview.md b/docs/userGuide/markBindSyntaxOverview.md index f5263dfb54..e914e0024e 100644 --- a/docs/userGuide/markBindSyntaxOverview.md +++ b/docs/userGuide/markBindSyntaxOverview.md @@ -100,6 +100,9 @@ MarkBind has several core Vue.js components built on the popular [BootStrap](htt [Nunjucks](https://mozilla.github.io/nunjucks/) is a JavaScript based templating tool. Here is a simple example: +%%CODE:%% +
+ {% raw %} ```html
+ +%%OUTPUT:%% +
+ + -
    {% for item in [1, 2, 3, 4] %}
  • Item {{ item }}
  • {% endfor %}
+
+
As MarkBind uses Nunjucks behind the scene, **MarkBind is generally compatible with Nunjucks**, which means you can use Nunjucks templating in your source files. Note that ==the code is processed for Nunjucks syntax before the rest of the MarkBind syntax are processed==.