summaryrefslogtreecommitdiff
path: root/exampleSite/content.en/docs/shortcodes/details.md
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2022-11-02 23:28:30 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2022-11-02 23:28:30 +0100
commit9013a1f4570885416254aabbe7e389822d2fb215 (patch)
tree99733fd2fab2fea9d70f4d679adf3527c3c73035 /exampleSite/content.en/docs/shortcodes/details.md
parent6e1b44c4c4654d8abb8c534b50869c754b8cad27 (diff)
#352: move english content to content.en
Diffstat (limited to 'exampleSite/content.en/docs/shortcodes/details.md')
-rw-r--r--exampleSite/content.en/docs/shortcodes/details.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/exampleSite/content.en/docs/shortcodes/details.md b/exampleSite/content.en/docs/shortcodes/details.md
new file mode 100644
index 0000000..248bafd
--- /dev/null
+++ b/exampleSite/content.en/docs/shortcodes/details.md
@@ -0,0 +1,22 @@
+# Details
+
+Details shortcode is a helper for `details` html5 element. It is going to replace `expand` shortcode.
+
+## Example
+```tpl
+{{</* details "Title" [open] */>}}
+## Markdown content
+Lorem markdownum insigne...
+{{</* /details */>}}
+```
+```tpl
+{{</* details title="Title" open=true */>}}
+## Markdown content
+Lorem markdownum insigne...
+{{</* /details */>}}
+```
+
+{{< details "Title" open >}}
+## Markdown content
+Lorem markdownum insigne...
+{{< /details >}}