Find Missing Translation Files in a Quarto Project
find_missings.RdScans a Quarto project's files and configuration to identify which translation files are expected but do not exist.
Usage
find_missings(
yml_file = "_quarto.yml",
pages_path = "pages",
include_index = TRUE,
include_pages = TRUE
)Arguments
- yml_file
The name of the Quarto configuration file. Defaults to
_quarto.yml.- pages_path
The path to the directory containing the Quarto documents. Defaults to
"pages".- include_index
Logical. If
TRUE, check for missing index page translations.- include_pages
Logical. If
TRUE, check for missing translations of files withinpages_path.