jade_compile | R Documentation |
Jade is a high performance template engine heavily influenced by Haml.
jade_compile(text, ...) jade_render(text, ..., locals = list())
text |
string with jade template. |
... |
options passed to the compiler, see https://jade-lang.com/api. |
locals |
local variables used in the template. |
Converting a template to HTML text involves two steps. The first step compiles
the template with some formatting options into a closure. The binding for this
is implemented in jade_compile
. The second step calls the closure with
optionally some local variables to render the output to HTML.
The jade_render
function is a convenience wrapper that does both steps at
once. This is slightly faster if you only need to render your template once.
Jade documentation: https://jade-lang.com
# Example from https://jade-lang.com text <- readLines(system.file("examples/test.jade", package = "rjade")) # Compile and render seperately tpl <- jade_compile(text, pretty = TRUE) tpl() tpl(youAreUsingJade = TRUE) # Slightly faster for one-time rendering jade_render(text, pretty = TRUE) jade_render(text, pretty = TRUE, locals = list(youAreUsingJade = TRUE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.