Skip to content

Commit fa71abf

Browse files
committed
rebuild documentation
1 parent 33663ca commit fa71abf

File tree

7 files changed

+133
-10
lines changed

7 files changed

+133
-10
lines changed

NAMESPACE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ export(quarto_add_extension)
55
export(quarto_binary_sitrep)
66
export(quarto_create_project)
77
export(quarto_inspect)
8+
export(quarto_list_extensions)
89
export(quarto_path)
910
export(quarto_preview)
1011
export(quarto_preview_stop)
1112
export(quarto_publish_app)
1213
export(quarto_publish_doc)
1314
export(quarto_publish_site)
15+
export(quarto_remove_extension)
1416
export(quarto_render)
1517
export(quarto_serve)
18+
export(quarto_update_extension)
1619
export(quarto_use_template)
1720
export(quarto_version)
1821
import(rlang)
@@ -28,4 +31,5 @@ importFrom(rstudioapi,isAvailable)
2831
importFrom(rstudioapi,viewer)
2932
importFrom(tools,vignetteEngine)
3033
importFrom(utils,browseURL)
34+
importFrom(utils,read.table)
3135
importFrom(yaml,write_yaml)

R/list.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#'
1313
#' @importFrom rlang is_interactive
1414
#' @importFrom cli cli_abort
15+
#' @importFrom utils read.table
1516
#' @export
1617
quarto_list_extensions <- function(quiet = FALSE, quarto_args = NULL){
1718
quarto_bin <- find_quarto()
@@ -23,7 +24,7 @@ quarto_list_extensions <- function(quiet = FALSE, quarto_args = NULL){
2324
if (grepl("No extensions are installed", stderr_cleaned)) {
2425
invisible()
2526
} else{
26-
invisible(read.table(text = stderr_cleaned, header = TRUE, fill = TRUE, sep = "", stringsAsFactors = FALSE))
27+
invisible(utils::read.table(text = stderr_cleaned, header = TRUE, fill = TRUE, sep = "", stringsAsFactors = FALSE))
2728
}
2829
}
2930

R/remove.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#' \dontrun{
2424
#' # Remove an already installed extension
2525
#' quarto_remove_extension("quarto-ext/fontawesome")
26-
#'
26+
#' }
2727
#' @importFrom rlang is_interactive
2828
#' @importFrom cli cli_abort
2929
#' @export

man/quarto_list_extensions.Rd

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/quarto_publish_doc.Rd

Lines changed: 6 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/quarto_remove_extension.Rd

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/quarto_update_extension.Rd

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)