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 >}}