Skip to content

Commit

Permalink
add link to message
Browse files Browse the repository at this point in the history
  • Loading branch information
jayhesselberth committed Oct 9, 2024
1 parent 40d7ed0 commit 6350825
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion R/build-quarto-articles.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
build_quarto_articles <- function(pkg = ".", article = NULL, quiet = TRUE) {
pkg <- as_pkgdown(pkg)
if (pkg$bs_version < 5) {
cli::cli_abort("Quarto articles require Bootstrap 5.", call = NULL)
cli::cli_abort(c(
"Quarto articles require Bootstrap 5.",
"i" = "See details at {.url pkgdown.r-lib.org/articles/customise.html#getting-started}"),
call = NULL
)
}

qmds <- pkg$vignettes[pkg$vignettes$type == "qmd", ]
Expand Down

0 comments on commit 6350825

Please sign in to comment.