Tabber plugin

It be great to support tabbers in Obsidian.

proposal:

all that would be needed is some custom html insertion, and custom CSS based on callout classes.
when we use TABBER, we can get the element or its children in HTML

<div data-callout="tabber" class="callout"></div>

Other

mkdocs already supports this in markdown. see docs
their implementation:

=== "Tab 1"
    Markdown **content**.

    Multiple paragraphs.

=== "Tab 2"
    More Markdown **content**.

    - list item a
    - list item b

r-markdown also supports tabber in markdown, see docs

related post requesting same feature, mentions a hacky way of getting this to work with HTML and CSS, but it’s not markdownfriendly.

1 Like