combine_tbl_to_file {lightparser}R Documentation

Combine a parsed tbl Rmd / Qmd file into a new file

Description

Combine a parsed tbl Rmd / Qmd file into a new file

Usage

combine_tbl_to_file(parsed_tbl, output_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"))

[Package lightparser version 0.1.0 Index]