# File lib/maruku/output/to_html.rb, line 668 def add_class_to(el, cl) el.attributes['class'] = if already = el.attributes['class'] already + " " + cl else cl end end