Sha256: 2725931668bd37bfe9143c779c3edba455238cf4a1a99d4a1cc8db9c3baa9a86
Contents?: true
Size: 932 Bytes
Versions: 2
Compression:
Stored size: 932 Bytes
Contents
require 'malt/formats/abstract' require 'malt/formats/html' require 'malt/engines/haml' module Malt::Format # Haml looks like a Markup format, but it turns out to be # a template format too. class Haml < Abstract register 'haml' # def haml(*) text end # def to_haml(*) self end # def html(data=nil, &yld) render_engine.render(:format=>:html, :text=>text, :file=>file, :data=>data, &yld) end # def to_html(data=nil, &yld) text = html(data, &yld) opts = options.merge(:text=>text, :file=>refile(:html), :type=>:html) HTML.new(opts) end # #def to_ruby(db, &yld) # @ruby ||= ( # source = engine.compile(text, file) # Ruby.new(:text=>source, :file=>refile(:rb)) # ) #end private # def render_engine @render_engine ||= Malt::Engine::Haml.new(options) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
malt-0.3.0 | lib/malt/formats/haml.rb |
malt-0.2.0 | lib/malt/formats/haml.rb |