-
Notifications
You must be signed in to change notification settings - Fork 434
Expand file tree
/
Copy pathindex.qmd
More file actions
89 lines (46 loc) · 1.31 KB
/
index.qmd
File metadata and controls
89 lines (46 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
title: "Search Tab Test"
---
## Plain Section
This section contains epsilon-no-tabs content outside of any tabset.
## Ungrouped Tabset
::: {.panel-tabset}
### Tab Alpha
This tab contains alpha-visible-content that is in the default active tab.
### Tab Beta
This tab contains beta-unique-search-term that is only in this inactive tab.
:::
## Both Tabs Match
::: {.panel-tabset}
### R
This tab contains gamma-both-tabs content in the active R tab.
### Python
This tab also contains gamma-both-tabs content in the inactive Python tab.
:::
## Grouped Tabset
::: {.panel-tabset group="language"}
### R
This tab contains delta-r-only-term that is only in the R tab.
### Python
This tab contains python-only-content in the Python tab.
:::
## Second Grouped Tabset
::: {.panel-tabset group="language"}
### R
This tab shows R content in the second grouped tabset.
### Python
This tab shows Python content in the second grouped tabset.
:::
## Nested Tabset
::: {.panel-tabset}
### Outer Tab A
This is outer-tab-a-content in the default active outer tab.
### Outer Tab B
Content in outer tab B.
::: {.panel-tabset}
#### Inner Tab X
This is inner-tab-x-content in the default active inner tab.
#### Inner Tab Y
This tab contains nested-inner-only-term that is only in this deeply nested inactive tab.
:::
:::