# File lib/Borges/HTML/HtmlAttributes.rb, line 56
  def print_attribute_on(attr, val, str)
    return if val == false

    attr = attr.to_s.downcase
    str << " #{attr}=\"#{val == true ? attr : val}\""
  end