Combine a parsed tbl Rmd / Qmd file into a new file
Source:R/combine_tbl_to_file.R
combine_tbl_to_file.Rd
Combine a parsed tbl Rmd / Qmd file into a new file
Arguments
- parsed_tbl
A tibble with columns as issued by
split_to_tbl()
- output_file
A Rmd / Qmd file path to write the new content
Value
The content of a Rmd / Qmd file as character and the resulting file if output_file is provided.
Examples
file <- system.file("dev-template-parsing.Rmd",
package = "lightparser"
)
# split first
tbl_rmd <- split_to_tbl(file)
# apply your filters
tbl_rmd_filtered <- tbl_rmd[-5, ]
# combine then
combine_tbl_to_file(tbl_rmd_filtered, tempfile(fileext = ".Rmd"))