hepheir / Python-HTML-Parser

🔥 beautifulsoup으로는 만족못해서 만들어보는 Python3.9 버전의 html 파싱기
MIT License
2 stars 0 forks source link

Implement interface `DocumentType` #26

Open hepheir opened 3 years ago

hepheir commented 3 years ago

https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-412266927

Interface DocumentType

IDL Definition

More ``` interface DocumentType : Node { readonly attribute DOMString name; readonly attribute NamedNodeMap entities; readonly attribute NamedNodeMap notations; }; ```

Attributes

Overrides