mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
.. | ||
lib/sinatra | ||
test | ||
CHANGES | ||
LICENSE | ||
Rakefile | ||
README.rdoc | ||
sinatra-markaby.gemspec | ||
TODO | ||
VERSION.yml |
= sinatra-markaby sinatra-markaby is an extension for sinatra to enable rendering of html files using markaby templates. == Installation sudo gem install sbfaulkner-sinatra-markaby -s http://gems.github.com == Example require 'rubygems' require 'sinatra' require 'sinatra/markaby' get '/' do markaby :template end __END__ @@ template mab.html do head { title "Hello world" } body do p "Hello world!!!!!" end end == Legal Author:: S. Brent Faulkner <brentf@unwwwired.net> License:: Copyright (c) 2009 unwwwired.net, released under the MIT license