module Ramaze::Helper::Markaby
Allows you to use some shortcuts for markaby in your Controller.
Public Instance Methods
markaby(ivs = {}, helpers = nil, &block)
click to toggle source
Use this inside your controller to directly build Markaby Refer to the Markaby-documentation and testsuite for more examples.
@example
mab { h1 "Apples & Oranges"} #=> "<h1>Apples & Oranges</h1>" mab { h1 'Apples', :class => 'fruits&floots' }
# File lib/ramaze/helper/markaby.rb, line 16 def markaby(ivs = {}, helpers = nil, &block) builder = ::Markaby::Builder builder.extend(Ramaze::Helper::Methods) builder.send(:helper, :link) iv_hash = {} instance_variables.each do |iv| key, value = iv.gsub('@', '').to_sym, instance_variable_get(iv) iv_hash[key] = value end builder.new(iv_hash.merge(ivs), helpers, &block).to_s end
Also aliased as: mab