Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jthomasmock/octavo

Bundle and Move Quarto extensions
https://github.com/jthomasmock/octavo

Last synced: 13 days ago
JSON representation

Bundle and Move Quarto extensions

Awesome Lists containing this project

README

        

# octavo

The goal of octavo is to provide a minimal example of bundling and sharing Quarto extensions as a R package.

## Installation

You can install the development version of octavo from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("jthomasmock/octavo")
```

## Example

``` r
library(octavo)

# List the available extensions
available_extensions()
#> [1] "code-filename" "grouped-tabsets"

# install them into _extensions folder for use
use_quarto_ext("code-filename")
#> Created '_extensions' folder
#> Code Filename v 0.1.0 was installed to _extensions folder in current working directory.
```