Now the problem is that I have to pass the id as an argument of inner structure and should be detached from its parent. I should be able to use shortcode in following way:
{% tabs %}
{% tab id = "tab-1" title = "Tab One" %}
Content in Tab 1
{% \tab %}
{% tab id = "tab-2" title = "Tab Two" %}
Content in Tab 2
{% \tab %}
{% \tabs %}
I’m trying really hard to achieve this… I got as far as passing variables, now I’m stuck on identifying the first content pane to make it active. Anyway, here’s how you invoke the shortcode:
{{% tabs %}}
{{% tab "Overview" %}}
Here's some content
{{% /tab %}}
{{% tab "Profile" %}}
Content of the profile tab
{{% /tab %}}
{{% tab "Whatever" %}}
Whatever goes here
{{% /tab %}}
{{% /tabs %}}
Long story short, you can use .Page.Scratch from the child shortcode and pull those values from the parent, like so:
This is taking the param from your shortcode, and saving it into an array called “tabList” which can be invoked from the parent using .Page.Scratch.Get "tabList".
You can then iterate through this array using range.
I was running into the same issue and was able to solve it. Since this topic comes up first, I wanted to post my solution for others looking for a solution.
hi, i checked the repo and i’m not quite sure how to connect md files to tabs and tab content. Can you post the link to your repo where you have used this.? It’ll be really helpful for me match with my contents and produce it. And i’m also using nested tabs,