# File lib/Borges/HTML/HtmlRenderer.rb, line 197
  def radio_button(group, checked = false, &block)
    @attributes[:checked] if checked
    
    input(:radio, group, @callbacks.register_callback(&block))
  end