# File lib/openid/yadis/htmltokenizer.rb, line 211
  def initialize(text)
    super(text)
    temp_arr = text.scan(/^<!--\s*(.*?)\s*-->$/m)
    if temp_arr[0].nil?
      raise HTMLTokenizerError, "Text passed to HTMLComment.initialize is not a comment"
    end

    @contents = temp_arr[0][0]
  end