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
This commit is contained in:
Saurabh Mishra 2023-09-05 03:24:51 -07:00 committed by GitHub
parent e4c36236df
commit 939acc02a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 */%}}
```