Skip to content

jeroen/rjade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

R Bindings to the Jade Templating Engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages