From efc9c9f4207009e44bd93b718985622198c59d2d Mon Sep 17 00:00:00 2001
From: machiav3lli <antonios.hazim@tutanota.com>
Date: Sun, 20 Aug 2023 08:47:33 +0000
Subject: [PATCH] Add: Documentation of tab(s) shortcodes
---
exampleSite/content/docs/compose/shortcodes.md | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/exampleSite/content/docs/compose/shortcodes.md b/exampleSite/content/docs/compose/shortcodes.md
index dddc572..38aa8ae 100644
--- a/exampleSite/content/docs/compose/shortcodes.md
+++ b/exampleSite/content/docs/compose/shortcodes.md
@@ -169,6 +169,44 @@
{{< gallery "images/painting.jpg,images/scribble.jpg,images/painting.jpg" "Gallery Image 1::gallery image 2::gallery image 1 copy" >}}
+### Tab(s)
+
+Use this short if you want to publish a multiple tabs component.
+
+**Syntax**
+
+```markdown
+{{</* tabs "tabsId" */>}}
+{{</* tab "First" */>}}
+What could such a tab include?
+{{</* /tab >}}
+{{</* tab "Second" */>}}
+- Some *bulletpoints*
+- and more…
+- …
+{{</* /tab >}}
+{{</* tab "Third" */>}}
+> great wise words?
+{{</* /tab */>}}
+{{</* /tabs */>}}
+```
+
+**Result**
+
+{{< tabs "tabsId" >}}
+{{< tab "First" >}}
+What could such a tab include?
+{{< /tab >}}
+{{< tab "Second" >}}
+- Some *bulletpoints*
+- and more…
+- …
+{{< /tab >}}
+{{< tab "Third" >}}
+> great wise words?
+{{< /tab >}}
+{{< /tabs >}}
+
### Tip
Use this short if you want to publish informational tooltips that look like:
--
Gitblit v1.10.0