From a22f98d6077963e8b4e4a394cd1f6a36613889ef Mon Sep 17 00:00:00 2001
From: KloudGeek <174849+KloudGeek@users.noreply.github.com>
Date: Sun, 31 Jul 2022 23:12:55 -0500
Subject: [PATCH] Update modules.md
Updated lines with interpolation to use Jekyll/Liquid syntax so they appear correctly on the rendered page.
---
docs/modules/modules.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/modules/modules.md b/docs/modules/modules.md
index 19cd40e..12d1cd4 100644
--- a/docs/modules/modules.md
+++ b/docs/modules/modules.md
@@ -155,7 +155,7 @@ This boiler-plate code can be easily adapted to make an API request and display
6 │ Request to API
7 │
8 │
- 9 │ The version is: {{ apiResponse }}
+ 9 │ The version is: {% raw %}{{ apiResponse }}{% endraw %}
10 │
11 │
12 │
@@ -235,7 +235,7 @@ We can now update our UI to use our own back-end function.
7 │ Request to Module
8 │
9 │
- 10 │ The API response was: {{ apiResponse }}
+ 10 │ The API response was: {% raw %}{{ apiResponse }}{% endraw %}
11 │
12 │
13 │
@@ -296,7 +296,7 @@ The last step is getting data sent from your module's front-end to your module's
12 │
13 │
14 │
- 15 │ The API response was: {{ apiResponse }}
+ 15 │ The API response was: {% raw %}{{ apiResponse }}{% endraw %}
16 │
17 │
18 │