change example to html for render
Some checks failed
deploy-docs / build-and-deploy (push) Failing after 13s

This commit is contained in:
2026-04-12 08:58:56 +00:00
parent 9eeda759ac
commit 5ff8db7672

View File

@@ -47,8 +47,8 @@ When writing documentation *about* shortcodes (or anytime you need to display `{
* **Correct (Inner only):** `{{/* shortcode_name */}}` (If you just want to show the generic brackets without `< >` or `% %`)
**Common Mistakes that break the build:**
* ❌ `{{< /* shortcode */ >}}` (Spaces around the comment markers cause parsing errors or unrecognized characters)
* ❌ `{{/*< shortcode >*/}}` (Comment markers placed outside the inner delimiters)
* ❌ `&#123;&#123;< /* shortcode */ >&#125;&#125;` (Spaces around the comment markers cause parsing errors or unrecognized characters)
* ❌ `&#123;&#123;/*< shortcode >*/&#125;&#125;` (Comment markers placed outside the inner delimiters)
* ❌ `&#123;&#123;` (Using HTML entities is unnecessary, harder to read in source, and can break copy-pasting)
### Theme Shortcodes (Blowfish)