Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jthomasmock/octavo
- Owner: jthomasmock
- License: other
- Created: 2022-08-14T20:48:35.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-14T20:50:53.000Z (about 2 years ago)
- Last Synced: 2024-08-09T02:18:00.360Z (3 months ago)
- Language: Lua
- Size: 5.86 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jthomasmock/octavo - Bundle and Move Quarto extensions (Lua)
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.
```