From f92395411018af0cdca084601889d0e46a5d947f Mon Sep 17 00:00:00 2001 From: wlandau Date: Mon, 11 Nov 2024 05:24:30 -0500 Subject: [PATCH] add Rd file --- man/tar_quarto_files_get_source_files.Rd | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 man/tar_quarto_files_get_source_files.Rd diff --git a/man/tar_quarto_files_get_source_files.Rd b/man/tar_quarto_files_get_source_files.Rd new file mode 100644 index 0000000..cb21c8b --- /dev/null +++ b/man/tar_quarto_files_get_source_files.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/tar_quarto_files.R +\name{tar_quarto_files_get_source_files} +\alias{tar_quarto_files_get_source_files} +\title{Get Source Files From Quarto Inspect} +\usage{ +tar_quarto_files_get_source_files(file_information) +} +\description{ +Collects all files from the +\code{fileInformation} field that are used in the current report. +} +\details{ +\code{fileInformation} contains a list of files. Each file entry contains +two data frames. The first, \code{includeMap}, contains a \code{source} column (files +that include other files, e.g. the main report file) and a \code{target} column +(files that get included by the \code{source} files). The \code{codeCells} data frame +contains all code cells from the files represented in \code{includeMap}. +}