add_html(tag, name)
public
Adds a markup class with name for words surrounded by HTML tag tag. To process
emphasis tags:
am.add_html 'em', :EM
# File lib/rdoc/markup/attribute_manager.rb, line 207
def add_html(tag, name)
@html_tags[tag.downcase] = RDoc::Markup::Attribute.bitmap_for name
end