From 939acc02a8beac4f3ec0cd7e740e612cef3412f7 Mon Sep 17 00:00:00 2001 From: Saurabh Mishra Date: Tue, 5 Sep 2023 03:24:51 -0700 Subject: [PATCH] fix: add line break for steps shortcode example usage * there needs to be a line break between {{% steps %}} and the first H3 If there is no line break between {{% steps %}} and the first heading, the content is not rendered correctly. * Update exampleSite/content/docs/guide/shortcodes/steps.md * Update exampleSite/content/docs/guide/shortcodes/steps.md --- exampleSite/content/docs/guide/shortcodes/steps.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exampleSite/content/docs/guide/shortcodes/steps.md b/exampleSite/content/docs/guide/shortcodes/steps.md index f97b0b1..584f081 100644 --- a/exampleSite/content/docs/guide/shortcodes/steps.md +++ b/exampleSite/content/docs/guide/shortcodes/steps.md @@ -29,6 +29,7 @@ Put Markdown h3 header within `steps` shortcode. ``` {{%/* steps */%}} + ### Step 1 This is the first step. @@ -36,5 +37,6 @@ This is the first step. ### Step 2 This is the second step. + {{%/* /steps */%}} ```