Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

rjade

A Clean, Whitespace-Sensitive Template Language for Writing HTML

Build Status AppVeyor Build Status Coverage Status CRAN_Status_Badge CRAN RStudio mirror downloads Github Stars

Jade is a high performance template engine heavily influenced by Haml and implemented with JavaScript for node and browsers.

Documentation

Hello World

Example from http://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

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.