In this line, it's hardcoded to set the first tab to be active: https://github.com/gethugothemes/hugo-modules/blob/30ad48e108af9cc0d29aa5af45054d3fceca352d/tab/layouts/shortcodes/tabs.html#L17 Would be nice if this was the default behaviour _unless_ an `active` or `active="true"` param was set in the shortcode. Like so (2nd tab is active): ```go {{< tabs "tab-group-name" >}} {{< tab "first" >}} First Tab {{< /tab >}} {{< tab "second" active="true" >}} Second Tab {{< /tab >}} {{< tab "third" >}} Third Tab {{< /tab >}} {{< /tabs >}} ```