From 857dc8de99c5afb639d2e7150d12b0f2b277c21b Mon Sep 17 00:00:00 2001 From: Alex Haslam Date: Mon, 16 Feb 2026 09:28:10 +0000 Subject: [PATCH] Update docs --- exampleSite/content/docs/shortcodes/index.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/exampleSite/content/docs/shortcodes/index.md b/exampleSite/content/docs/shortcodes/index.md index 737e3e5d..1f5a0610 100644 --- a/exampleSite/content/docs/shortcodes/index.md +++ b/exampleSite/content/docs/shortcodes/index.md @@ -878,6 +878,7 @@ The `tabs` shortcode is commonly used to present different variants of a particu | `default` | **Optional.** Label of the tab to be active by default. If not set, the first tab will be active. | | `label` | **Required.** The text label displayed on the tab button. | | `icon` | **Optional.** Icon name to display before the label. | +| `md` | **Optional.** Render tab content as Markdown (default `true`). Set `md=false` to allow nested shortcodes inside tab content. | **Example 1: Basic Usage** @@ -904,8 +905,8 @@ The `tabs` shortcode is commonly used to present different variants of a particu ``` {{}} - {{}} - See [documentation](https://code.visualstudio.com/docs/setup/linux#_install-vs-code-on-linux). + {{}} + {{}}See [documentation](https://code.visualstudio.com/docs/setup/linux#_install-vs-code-on-linux).{{}} {{}} {{}} @@ -935,8 +936,8 @@ The `tabs` shortcode is commonly used to present different variants of a particu ``` {{< /tab >}} - {{< tab label="Linux" >}} - See [documentation](https://code.visualstudio.com/docs/setup/linux#_install-vs-code-on-linux). + {{< tab label="Linux" md=false >}} + {{< alert >}}See [documentation](https://code.visualstudio.com/docs/setup/linux#_install-vs-code-on-linux).{{< /alert >}} {{< /tab >}} {{< /tabs >}}