diff --git a/docs/userGuide/syntax/code.md b/docs/userGuide/syntax/code.md
index a7a9ca6eab..b7ee723991 100644
--- a/docs/userGuide/syntax/code.md
+++ b/docs/userGuide/syntax/code.md
@@ -228,6 +228,17 @@ or the java code `public static void main(String[] args)`{.java}.
+{% raw %}
+
+##### Displaying content within curly braces: `{{ content }}`
+
+If your code contains special Nunjucks tags like `{{` or `}}`, use a [raw-endraw block](../tipsAndTricks.html#using-raw-endraw-to-display-content):
+
+```markdown
+{% raw %} {{ content }} {% endraw %}
+```
+{% endraw %}
+
````
diff --git a/docs/userGuide/syntax/mathformulae.md b/docs/userGuide/syntax/mathformulae.md
index 12cb99ed27..51d914e08f 100644
--- a/docs/userGuide/syntax/mathformulae.md
+++ b/docs/userGuide/syntax/mathformulae.md
@@ -33,20 +33,25 @@ Finally, the Pythagoras theorem: $c^2 = a^2 + b^2$.
-
-
Additional delimiters are possible by enabling the [mathDelimiters](../usingPlugins.md#plugin-mathdelimiters) plugin.
-
-
+
+
+{% raw %}
-If your equation requires special Nunjucks tags like {% raw %}`{{`{% endraw %} or {% raw %}`}}`{% endraw %},use a
-[raw-endraw block](https://markbind.org/userGuide/tipsAndTricks.html#using-raw-endraw-to-display-content):
+If your equation requires special Nunjucks tags like `{{` or `}}`, use a
+[raw-endraw block](../tipsAndTricks.html#using-raw-endraw-to-display-content):
```markdown
-{% raw %}{% raw %}\(e^{{\frac{1}{3}} + 1}\){% endraw %}{% endraw %}
+{% raw %}
+
+\(e^{{\frac{1}{3}} + 1}\)
+
+{% endraw %}
```
+{% endraw %}
+
More info on allowed symbols: https://katex.org/docs/support_table.html
diff --git a/docs/userGuide/tipsAndTricks.md b/docs/userGuide/tipsAndTricks.md
index 1eda9524bd..f0e41b0a6b 100644
--- a/docs/userGuide/tipsAndTricks.md
+++ b/docs/userGuide/tipsAndTricks.md
@@ -34,18 +34,47 @@ For Markdown syntax: To display a literal character that are normally used for M
##### :fas-lightbulb: Using {% raw %}{% endraw %} to display `{{ content }}`
+By default, MarkBind processes any code in the form of `{{ content }}`. This is because Nunjucks (which is [supported by MarkBind](markBindSyntaxOverview.html#support-for-nunjucks)) uses this syntax to [evaluate an expression, variable, or function calls](https://mozilla.github.io/nunjucks/templating.html#variables). For instance:
-To display the raw variable interpolation syntax using `{% raw %}{% endraw %}`, you would also need to add
-the `v-pre` attribute using markdown-it-attrs or as a HTML attribute.
+```
+{{ username }}
+```
+
+This will not display `{{ username }}` as a raw string, but instead, look up the variable `username` from the context and display its value.
+
+In general, to use this syntax as a raw string in a code block or a template, there are [two methods](https://jinja.palletsprojects.com/en/3.0.x/templates/#escaping) available. The syntax can either be encased as a variable like `{{ '{{' }}` and `{{ '}}' }}`, or alternatively, the entire code block can be encased with the raw-endraw tags: `{% raw %} {{ content }} {% endraw %}`.
-This isn't necessary for `` elements, markdown code fences and inline code though, which MarkBind automatically
-adds `v-pre` for.
+If using raw-endraw tags outside `` elements, markdown code fences, or inline code, you also need to add the `v-pre` attribute.
-However, this does not change the need for `{% raw %}{% endraw %}`. Meaning, you can still use variables within your code!
-
+For HTML elements, the `v-pre` attribute needs to be declared as part of the HTML tag:
+
+```
+{% raw %}
+
+
+
+{% endraw %}
+```
+For Markdown elements, the `v-pre` attribute needs to be declared using [`markdown-it-attrs`](formattingcontents.html#classes-attributes-and-amp-identifiers), which allows classes, identifiers, and attributed to be added to Markdown syntax:
+
+```
+{% raw %}
+
+# Header with {{ content }} {v-pre}
+
+{% endraw %}
+```
+
+Otherwise, any HTML or Markdown content containing double curly braces will be processed as a variable and will not be displayed properly.
+
+Note: This step isn't necessary for `` elements, markdown code fences and inline code because MarkBind automatically adds `v-pre` for them.
+
+
{% endraw %}