From ec111e53b62afaac07c1c02f489eaf394f19e81e Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Mon, 20 May 2024 14:41:37 -0400 Subject: [PATCH] Remove ... --- R/markdown.R | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/R/markdown.R b/R/markdown.R index 156df4581..10266a001 100644 --- a/R/markdown.R +++ b/R/markdown.R @@ -11,9 +11,8 @@ markdown_text <- function(text, ...) { markdown_text_inline <- function(text, error_path, error_pkg, - error_call = caller_env(), - ...) { - html <- markdown_text(text, ...) + error_call = caller_env()) { + html <- markdown_text(text) if (is.null(html)) { return() } @@ -27,7 +26,7 @@ markdown_text_inline <- function(text, ) } - paste0(xml2::xml_contents(children), collapse="") + paste0(xml2::xml_contents(children), collapse = "") } markdown_text_block <- function(text, ...) {