class Rouge::Lexer

def mimetypes(*mts)

end
mimetypes 'text/html', 'application/xhtml+xml'
class Html < Lexer
@example

Specify a list of mimetypes associated with this lexer.
def mimetypes(*mts)
  (@mimetypes ||= []).concat(mts)
end