Once I have defined tabs, how do I define content outside/below tabs? Or, how do I end tabbed content?
I have planned a layout like so:
title
content above tabbed region.
tab1 tab2
-------------------
tab content 1
-------------------
content below tabbed region
which in rmarkdown would be
## title {.tabset .tabset-fade}
content above tabbed region.
### tab 1
tab content 1
### tab 2
tab content 2
content below tabbed region.
But, content below tabbed region.
appears as part of tab2. How can it be defined outside of the tab?
Perhaps I might have further headings in content below. So a related question would be how can I define which headings to be part of tab and which ones not to be?
See Question&Answers more detail:os