Skip to content
/ quartabs Public

❗ This is a read-only mirror of the CRAN R package repository. quartabs — Dynamically Generate Tabset Panels in 'Quarto' HTML Documents. Homepage: https://sayuks.github.io/quartabs/https://github.com/sayuks/quartabs Report bugs for this package: https://github.com/sayuks/quartabs/issues

License

Notifications You must be signed in to change notification settings

cran/quartabs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quartabs

R-CMD-check Codecov test coverage lint.yaml

The quartabs is an R package that dynamically generates Tabset Panels in Quarto HTML documents.

Installation

You can install quartabs from CRAN:

install.packages("quartabs")

You can install the development version of quartabs from GitHub with:

# install.packages("pak")
pak::pak("sayuks/quartabs")

Examples

render_tabset() takes a data frame as input and outputs the markdown that generates the tabset to stdout (console).

In the actual .qmd file, specify the chunk option results: asis.

library(quartabs)

data.frame(
  tab = c("A", "B"),
  value = c("Tab content for A", "Tab content for B")
) |>
  render_tabset(tab, value)
#> ::: {.panel-tabset}
#> 
#> # A
#> 
#> Tab content for A
#> 
#> # B
#> 
#> Tab content for B
#> 
#> :::

See Get started for details.

Code of Conduct

Please note that the quartabs project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

About

❗ This is a read-only mirror of the CRAN R package repository. quartabs — Dynamically Generate Tabset Panels in 'Quarto' HTML Documents. Homepage: https://sayuks.github.io/quartabs/https://github.com/sayuks/quartabs Report bugs for this package: https://github.com/sayuks/quartabs/issues

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages