README.md

rjade

A Clean, Whitespace-Sensitive Template Language for Writing HTML*

CRAN_Status_Badge CRAN RStudio mirror downloads

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.



jeroenooms/rjade documentation built on Aug. 23, 2022, 7:56 p.m.