ó
QõéKc           @   s\   d  Z  d Z d d l m Z m Z m Z d d l m Z d d l m	 Z	 d d l
 m Z d S(   sO   
HTML parsing library based on the WHATWG "HTML5"
specification. The parser is designed to be compatible with existing
HTML found in the wild and implements well-defined error recovery that
is largely compatible with modern desktop web browsers.

Example usage:

import html5lib
f = open("my_document.html")
tree = html5lib.parse(f) 
s   %(version)siÿÿÿÿ(   t
   HTMLParsert   parset   parseFragment(   t   getTreeBuilder(   t   getTreeWalker(   t	   serializeN(   t   __doc__t   __version__t   html5parserR    R   R   t   treebuildersR   t   treewalkersR   t
   serializerR   (    (    (    sP   /home/sa3ruby/intertwingly.net/code/venus-bzr/planet/vendor/html5lib/__init__.pyt   <module>   s
   