require "amrita/template" include Amrita tmpl_text = <<-END xhtml sample

title

body text


END data = { :title => "SAMPLE1", :body => "members of this HASH will be inserted here and title" } tmpl = TemplateText.new tmpl_text tmpl.prettyprint = true # tmpl.xml = true # use REXML parser tmpl.asxml = true tmpl.expand(STDOUT, data)