No release in over 3 years
Low commit activity in last 3 years
WLang is a general-purpose *code generation*/*templating engine*. It's main aim is to help you generating web pages, sql queries, ruby code (that is, generating text in general) without having to worry too much about html entities encoding, sql back quoting, string escaping and the like. WLang proposes a generic engine that you can easily extend to fit your needs. It also proposes standard instantiations of this engine for common tasks such as rendering HTML web pages.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 13.0
~> 3.0
~> 2.1
~> 2.0, >= 2.0.10

Runtime

~> 3.0
~> 2.0
~> 0.4.3
~> 0.6
 Project Readme

WLang

Run Tests

WLang is a powerful code generation and templating engine, implemented on top o temple and much inspired by the excellent mustache.

Links

Features

  • Tunable templating engine. You can define your own tags, and their behavior.
  • Powerful logic-less HTML concretization to render web pages à la Mustache with extra.
  • Compiled templates for speedy generation.

WLang 3.0 also has a few remaining issues.

  • It has some issues with spacing; not a big issue for HTML rendering but might prevent certain generation tasks.

Tunable templating engine

WLang is a templating engine, written in ruby. In that, it is similar to ERB, Mustache and the like:

WLang::Html.render 'Hello to ${who}!', who: 'you & the world'
# => "Hello to you & the world!"

To output HTML pages, WLang does not provides you with killer features or extraordinary shortcus. It supports escaping, as shown above, but many other templating engines do. For such HTML tasks, WLang does a pretty good job but many other engines perform faster and have nicer features. See the examples folder that documents WLang::Html.

WLang is designed to help you for other uses cases, user-defined ones in particular, such as generating code or whatever text generation task for which other engines quickly become inappropriate. WLang helps there because it allows you to create your own dialect, that is, you can define your own tags and their behavior. For instance,

class Highlighter < WLang::Dialect

  def highlight(buf, fn)
    var_name  = render(fn)
    var_value = evaluate(var_name)
    buf << var_value.to_s.upcase
  end

  tag '$', :highlight
end
Highlighter.render('Hello ${who}!', who: 'you & the world')
# => "Hello YOU & THE WORLD !"

WLang already provides a few useful dialects, such as WLang::Html (inspired by Mustache but a bit more powerful in my opinion). If they don't match your needs, it is up to you to define you own dialect for making your generation task easy. Have a look at the implementation of WLang's ones, it's pretty simple to get started!

Tilt integration

WLang has built-in support for Tilt facade to templating engines. In order to use that API:

require 'tilt'         # needed in your bundle, not a wlang dependency
require 'wlang'        # loads Tilt support provided Tilt has already been required

template = Tilt.new("path/to/a/template.wlang")   # suppose 'Hello ${who}!'
template.render(:who => "world")
# => Hello world!

template = Tilt.new("path/to/a/template.wlang", :dialect => Highlighter)
template.render(:who => "world")
# => Hello WORLD!

Please note that you should require tilt first, then wlang. Otherwise, you'll have to require wlang/tilt explicitely.

Sinatra integration

WLang comes bundled with built-in support for Sinatra >= 1.4 (release still in progress). As usual in Sinatra, you can simply invoke wlang as follows:

get '/' do
  wlang :index, :locals => { ... }
end

As wlang encourages logic-less templates, you should always use locals. However, there is specific support for layouts and partials, as the following example demonstrates:

get '/' do
  wlang :index, :locals => {:who => "world"}
end

__END__

@@layout
  <html>
    >{yield}
  </html>

@@index
  Hello from a partial: >{partial}

@@partial
  yeah, a partial saying hello to '${who}'!

Returned body will be (ignoring carriage returns):

<html>Hello from a partial: yeah, a partial saying hello to 'world'!</html>