From a99d9723ae6b249aa4b78984b4473334e3cbbc9d Mon Sep 17 00:00:00 2001 From: yiwen101 Date: Sat, 3 Feb 2024 19:15:59 +0800 Subject: [PATCH] Revert unrelated changes --- docs/userGuide/usingComponents.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/userGuide/usingComponents.md b/docs/userGuide/usingComponents.md index 1c5400720d..d951195b87 100644 --- a/docs/userGuide/usingComponents.md +++ b/docs/userGuide/usingComponents.md @@ -17,27 +17,27 @@
**MarkBind provides a number of components** (e.g., expandable panels, tabbed displays, navigation bars, etc.) that you can use to enhance the appearance/behavior of your pages. -
To use a component, just use the corresponding markup in your file. For example, to create a Panel, you just need to use the markup: ```html - Panel Content. + + Panel Content. + ``` {% from "userGuide/fullSyntaxReference.md" import syntax_topics as topics %} {% macro show_topic(filename) %} -
{% endmacro %} {% for k,v in topics %} -{% if 'component' in v[1] %} + {% if 'component' in v[1] %} {{ show_topic(k) }} -{% endif %} + {% endif %} {% endfor %}