diff --git a/projects/hugo/hugo_shortcodes.md b/projects/hugo/hugo_shortcodes.md index e89c00d..aeb24cc 100644 --- a/projects/hugo/hugo_shortcodes.md +++ b/projects/hugo/hugo_shortcodes.md @@ -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) +* ❌ `{{< /* shortcode */ >}}` (Spaces around the comment markers cause parsing errors or unrecognized characters) +* ❌ `{{/*< shortcode >*/}}` (Comment markers placed outside the inner delimiters) * ❌ `{{` (Using HTML entities is unnecessary, harder to read in source, and can break copy-pasting) ### Theme Shortcodes (Blowfish)