# File lib/rdoc/markup/to_html_snippet.rb, line 36
  def initialize characters = 100, paragraphs = 3, markup = nil
    super markup

    @character_limit = characters
    @paragraph_limit = paragraphs

    @characters = 0
    @mask       = 0
    @paragraphs = 0

    @markup.add_special RDoc::CrossReference::CROSSREF_REGEXP, :CROSSREF
  end