class Rouge::Lexer

def title(t=nil)

Specify or get this lexer's title. Meant to be human-readable.
def title(t=nil)
  if t.nil?
    t = tag.capitalize
  end
  @title ||= t
end