Skip to contents

This function extracts and returns the appendix portion of a unified database, optionally retrieving a specific appendix section by name using dot notation.

Usage

boilerplate_appendix(unified_db, name = NULL)

Arguments

unified_db

List. The unified boilerplate database

name

Character. Optional specific appendix section to retrieve using dot notation

Value

List or character. The requested appendix database or specific section

Examples

if (FALSE) { # \dontrun{
# Import all databases
unified_db <- boilerplate_import()

# Get all templates
template_db <- boilerplate_template(unified_db)

# Get a specific template
journal_template <- boilerplate_template(unified_db, "journal_article")
} # }