bookdown (version 0.39)

resolve_refs_html: 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)

Value

A post-processed character vector of the HTML character.

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, global = !number_sections is likely to be a reasonable default (i.e., when the sections are numbered, you number figures/tables by sections; otherwise just number them incrementally).

Examples

Run this code
library(bookdown)
resolve_refs_html(c("(#tab:foo) A nice table.",
    "See Table @ref(tab:foo)."), global = TRUE)

Run the code above in your browser using DataLab