Skip to contents

Scans 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 within pages_path.

Value

A data frame with details about expected translations, including master_file, lang, expected_path, and a logical missing column indicating if the file is absent.