Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

FeedParser does RSS aggregators do a great job at parsing RSS feeds but there is additional metadata in the HTML posts in the form of comments and trackbacks and we'd like to parse this out.

Currently all the templating systems use the same general format for div and class names and its possible to write a parser for them.

Roughly the structure is:

No Format


<div class="comments">

    <div class="comment-body">

         Hey guys... this is my comment.

    </div>

</div>

We'd like to push forward an "Open Comments" system mechanism to standardize on XHTML structure (similar to XOXO) so that RSS parsers like FeedParser /Atom aggregators can also parse comments in and trackbacks from HTML.

  • Trackback parsing
  • Comment parsing

...