# File parse-atom-content.rb, line 53
  def parse feed
    doc = REXML::Document.new feed
    ns = {"atom" => "http://www.w3.org/2005/Atom"}
    content = REXML::XPath.first doc, "//atom:content", ns
    return text(content)
  end