diff --git a/DESCRIPTION b/DESCRIPTION index 207b1a2f..9888f0a6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -28,4 +28,4 @@ BugReports: https://github.com/rstudio/pagedown/issues SystemRequirements: Pandoc (>= 2.2.3) Encoding: UTF-8 LazyData: true -RoxygenNote: 6.1.1 +RoxygenNote: 7.0.0 diff --git a/man/chrome_print.Rd b/man/chrome_print.Rd index 53909a89..93c347a3 100644 --- a/man/chrome_print.Rd +++ b/man/chrome_print.Rd @@ -4,11 +4,22 @@ \alias{chrome_print} \title{Print a web page to PDF or capture a screenshot using the headless Chrome} \usage{ -chrome_print(input, output = xfun::with_ext(input, format), wait = 2, - browser = "google-chrome", format = c("pdf", "png", "jpeg"), options = list(), - selector = "body", box_model = c("border", "content", "margin", "padding"), - scale = 1, work_dir = tempfile(), timeout = 30, extra_args = c("--disable-gpu"), - verbose = 0, async = FALSE) +chrome_print( + input, + output = xfun::with_ext(input, format), + wait = 2, + browser = "google-chrome", + format = c("pdf", "png", "jpeg"), + options = list(), + selector = "body", + box_model = c("border", "content", "margin", "padding"), + scale = 1, + work_dir = tempfile(), + timeout = 30, + extra_args = c("--disable-gpu"), + verbose = 0, + async = FALSE +) } \arguments{ \item{input}{A URL or local file path to an HTML page, or a path to a local diff --git a/man/html_paged.Rd b/man/html_paged.Rd index 3403b428..9536e275 100644 --- a/man/html_paged.Rd +++ b/man/html_paged.Rd @@ -4,9 +4,15 @@ \alias{html_paged} \title{Create a paged HTML document suitable for printing} \usage{ -html_paged(..., css = c("default-fonts", "default-page", "default"), theme = NULL, - template = pkg_resource("html", "paged.html"), csl = NULL, front_cover = NULL, - back_cover = NULL) +html_paged( + ..., + css = c("default-fonts", "default-page", "default"), + theme = NULL, + template = pkg_resource("html", "paged.html"), + csl = NULL, + front_cover = NULL, + back_cover = NULL +) } \arguments{ \item{...}{Arguments passed to diff --git a/man/html_resume.Rd b/man/html_resume.Rd index 277dba10..71bdce40 100644 --- a/man/html_resume.Rd +++ b/man/html_resume.Rd @@ -4,8 +4,12 @@ \alias{html_resume} \title{Create a resume in HTML} \usage{ -html_resume(..., css = "resume", template = pkg_resource("html", "resume.html"), - number_sections = FALSE) +html_resume( + ..., + css = "resume", + template = pkg_resource("html", "resume.html"), + number_sections = FALSE +) } \arguments{ \item{..., css, template, number_sections}{See \code{\link{html_paged}()}.} diff --git a/man/jss_paged.Rd b/man/jss_paged.Rd index 3f03a96a..7de32bf5 100644 --- a/man/jss_paged.Rd +++ b/man/jss_paged.Rd @@ -4,9 +4,14 @@ \alias{jss_paged} \title{Create an article for the Journal of Statistical Software} \usage{ -jss_paged(..., css = c("jss-fonts", "jss-page", "jss"), template = pkg_resource("html", - "jss_paged.html"), csl = pkg_resource("csl", "journal-of-statistical-software.csl"), - highlight = NULL, pandoc_args = NULL) +jss_paged( + ..., + css = c("jss-fonts", "jss-page", "jss"), + template = pkg_resource("html", "jss_paged.html"), + csl = pkg_resource("csl", "journal-of-statistical-software.csl"), + highlight = NULL, + pandoc_args = NULL +) } \arguments{ \item{..., css, template, csl, highlight, pandoc_args}{Arguments passed to \code{\link{html_paged}()}.} diff --git a/man/poster_relaxed.Rd b/man/poster_relaxed.Rd index bd55e547..b9e645b6 100644 --- a/man/poster_relaxed.Rd +++ b/man/poster_relaxed.Rd @@ -5,11 +5,18 @@ \alias{poster_jacobs} \title{Create posters in HTML} \usage{ -poster_relaxed(..., css = "poster-relaxed", template = pkg_resource("html", - "poster-relaxed.html"), number_sections = FALSE) +poster_relaxed( + ..., + css = "poster-relaxed", + template = pkg_resource("html", "poster-relaxed.html"), + number_sections = FALSE +) -poster_jacobs(..., css = "poster-jacobs", template = pkg_resource("html", - "poster-jacobs.html")) +poster_jacobs( + ..., + css = "poster-jacobs", + template = pkg_resource("html", "poster-jacobs.html") +) } \arguments{ \item{..., css, template, number_sections}{See \code{\link{html_paged}()}.} diff --git a/man/thesis_paged.Rd b/man/thesis_paged.Rd index 2d5119e9..16c62382 100644 --- a/man/thesis_paged.Rd +++ b/man/thesis_paged.Rd @@ -4,7 +4,11 @@ \alias{thesis_paged} \title{Create a paged HTML thesis document suitable for printing} \usage{ -thesis_paged(..., css = c("thesis"), template = pkg_resource("html", "thesis.html")) +thesis_paged( + ..., + css = c("thesis"), + template = pkg_resource("html", "thesis.html") +) } \arguments{ \item{..., css, template}{Arguments passed to \code{\link{html_paged}()}.}