Awesome
rjade
A Clean, Whitespace-Sensitive Template Language for Writing HTML*
Jade is a high performance template engine heavily influenced by Haml and implemented with JavaScript for node and browsers.
Documentation
Hello World
Example from https://jade-lang.com
# Example from http://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))
Installation
Binary packages for OS-X or Windows can be installed directly from CRAN:
install.packages("rjade")
To install on Linux have a look at V8 installation instructions.