class HTree::TemplateCompiler::TemplateAttrName

Public Instance Methods

output_attribute(text, out, context) click to toggle source
# File htree/template.rb, line 956
def output_attribute(text, out, context)
  output(out, context)
  out.output_string '="'
  out.output_dynamic_attvalue(text.to_s)
  out.output_string '"'
end