Notebooks & Scripts
stubs_list()
List Available Stubs
Shows all available stub templates that can be used with make_notebook().
Usage
stubs_list(type = NULL)
Arguments
- type
- Character. Filter by type: "quarto", "rmarkdown", "script", or NULL (all).
Value
Data frame with columns: name, type, source (user/framework)
Examples
if (FALSE) {
# List all stubs
stubs_list()
# List only Quarto stubs
stubs_list("quarto")
# List only script stubs
stubs_list("script")
}