resolve_refs_html {bookdown} | R Documentation |
Resolve figure/table/section references in HTML
Description
Post-process the HTML content to resolve references of figures, tables, and
sections, etc. The references are written in the form \@ref(key)
in
the R Markdown source document.
Usage
resolve_refs_html(content, global = FALSE)
Arguments
content |
A character vector of the HTML content. |
global |
Whether to number the elements incrementally throughout the
whole document, or number them by the first-level headers. For an R
Markdown output format, |
Value
A post-processed character vector of the HTML character.
Examples
library(bookdown)
resolve_refs_html(c("<caption>(#tab:foo) A nice table.</caption>",
"<p>See Table @ref(tab:foo).</p>"), global = TRUE)
[Package bookdown version 0.33 Index]