File tree Expand file tree Collapse file tree 3 files changed +89
-1
lines changed
docs/playwright/serve/shiny-r Expand file tree Collapse file tree 3 files changed +89
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ title : " Title"
3+ format : html
4+ server : shiny
5+ _quarto :
6+ playwright-test : serve/shiny-r/shiny-tabby-html.spec.ts
7+ ---
8+
9+ ``` {r}
10+ #| context: server
11+ output$text1 <- renderText({
12+ "hi, it's tab 1"
13+ })
14+ output$text2 <- renderText({
15+ "hi, it's tab 2"
16+ })
17+ output$text3 <- renderText({
18+ "hi, it's tab 3"
19+ })
20+ ```
21+
22+ ## Slide
23+
24+ ::: {.panel-tabset}
25+
26+ ### tab1
27+
28+ ``` {r}
29+ textOutput("text1")
30+ ```
31+
32+ ### tab2
33+
34+ ``` {r}
35+ textOutput("text2")
36+ ```
37+
38+ ### tab3
39+
40+ ``` {r}
41+ textOutput("text3")
42+ ```
43+
44+ :::
Original file line number Diff line number Diff line change 1+ ---
2+ title : " Title"
3+ format : revealjs
4+ server : shiny
5+ _quarto :
6+ playwright-test : serve/shiny-r/shiny-tabby-reveal.spec.ts
7+ ---
8+
9+ ``` {r}
10+ #| context: server
11+ output$text1 <- renderText({
12+ "hi, it's tab 1"
13+ })
14+ output$text2 <- renderText({
15+ "hi, it's tab 2"
16+ })
17+ output$text3 <- renderText({
18+ "hi, it's tab 3"
19+ })
20+ ```
21+
22+ ## Slide
23+
24+ ::: {.panel-tabset}
25+
26+ ### tab1
27+
28+ ``` {r}
29+ textOutput("text1")
30+ ```
31+
32+ ### tab2
33+
34+ ``` {r}
35+ textOutput("text2")
36+ ```
37+
38+ ### tab3
39+
40+ ``` {r}
41+ textOutput("text3")
42+ ```
43+
44+ :::
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ async function fullInit() {
2424const globOutput = Deno . args . length
2525 ? expandGlobSync ( Deno . args [ 0 ] )
2626 : expandGlobSync (
27- "docs/playwright/**/*.qmd" ,
27+ "docs/playwright/!(serve|shiny)/ **/*.qmd" ,
2828 ) ;
2929
3030setInitializer ( fullInit ) ;
You can’t perform that action at this time.
0 commit comments