dynamicTemplate: Replace placeholder variables in a HTML document string.

View source: R/webdeveloper.R

dynamicTemplateR Documentation

Replace placeholder variables in a HTML document string.

Description

Replace placeholder variables in a HTML document string.

Usage

dynamicTemplate(x, replacements = c())

Arguments

x

HTML string 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

dynamicTemplate(
x = html(body(templateVar("body_var"))),
replacements = c("%%rvar-body_var%%" = div(p("body replacement")))
)

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