dynamicTemplate2: Replace placeholder variables in a HTML document string,...

View source: R/webdeveloper.R

dynamicTemplate2R Documentation

Replace placeholder variables in a HTML document string, after reading the file into R.

Description

Replace placeholder variables in a HTML document string, after reading the file into R.

Usage

dynamicTemplate2(file, replacements = c())

Arguments

file

Filepath of the HTML file with placeholder variables that need to be replaced.

replacements

A named vector or named list. Names should match a template variable acting as a placeholder in a HTML document string and values should be the text to replace the placeholders with.

Value

A string of HTML with placeholder values replaced.

Examples

tmp <- tempfile()
writeLines(html(body(templateVar("body_var"))), con = tmp)
dynamicTemplate2(file = tmp, replacements = c("%%rvar-body_var%%" = div(p("body replacement"))))

webdeveloper documentation built on Oct. 18, 2022, 9:06 a.m.