diff --git a/docs/userGuide/syntax/includes.md b/docs/userGuide/syntax/includes.md
index 43c41ab6f3..0a26af83a7 100644
--- a/docs/userGuide/syntax/includes.md
+++ b/docs/userGuide/syntax/includes.md
@@ -61,6 +61,62 @@ The `` mechanism can be used inside any MarkBind source file (even insi
+
+
+When trying to include a variable, markdown is not rendered.
+
+To fix this, either replace the markdown with html tags if possible or replace the `include` with the fragment.
+
+{{ icon_example }}
+
+
+
+Include fragment in file "index.md":
+```html
+
+
+ ### I am a header
+
+```
+
+Code that uses include fragment:
+```html
+
+```
+
+The markdown will not render correctly and instead will appear as text '### I am a header'.
+
+
+To fix this, either replace the markdown with html tags if possible or replace the `include` with the fragment.
+
+{{ icon_example }} Replacing markdown with html tags:
+
+
+
+Include fragment in file "index.md":
+```html
+
+ I am a header
+
+```
+
+Code that uses include fragment:
+```html
+
+```
+
+
+{{ icon_example }} Replacing the `include` with the fragment:
+
+
+Code that is supposed to use include fragment:
+
+```html
+### I am a header
+```
+
+
+
**Attributes:**
* **`src`**: specify the source file path.
* **`inline`** (optional): make the included result an inline element. (wrapped in `` tag). e.g.,