Skip to content

Commit

Permalink
Remove ...
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed May 20, 2024
1 parent f34e1e1 commit ec111e5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions R/markdown.R
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand All @@ -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, ...) {
Expand Down

0 comments on commit ec111e5

Please sign in to comment.