├── .gitignore ├── Classes ├── CDataChunk.h ├── CDataChunk.m ├── CSSPartMatcher.h ├── CSSPartMatcher.m ├── CSSSelector.h ├── CSSSelector.m ├── CSSSelectorMatcher.h ├── CSSSelectorMatcher.m ├── CSSSelectorPart.h ├── CSSSelectorPart.m ├── Chunk.h ├── Chunk.m ├── CommentChunk.h ├── CommentChunk.m ├── DoctypeChunk.h ├── DoctypeChunk.m ├── DocumentRoot.h ├── DocumentRoot.m ├── Element.h ├── Element.m ├── ElementParser.h ├── ElementParser.m ├── EntityChunk.h ├── EntityChunk.m ├── NSString_HTML.h ├── NSString_HTML.m ├── ProcessingInstructionChunk.h ├── ProcessingInstructionChunk.m ├── TagChunk.h ├── TagChunk.m ├── TxtChunk.h ├── TxtChunk.m ├── URLParser.h └── URLParser.m ├── Code Overview.txt ├── Demo ├── Classes │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoViewController.h │ └── DemoViewController.m ├── Demo-Info.plist ├── Demo.xcodeproj │ └── project.pbxproj ├── DemoViewController.xib ├── Demo_Prefix.pch ├── MainWindow.xib ├── main.m ├── source.html └── source2.html ├── ElementParser.xcodeproj └── project.pbxproj ├── ElementParser_Prefix.pch ├── GPL v3 Liscense.pdf ├── HTML Entities.plist ├── Read Me.txt └── Test ├── .DS_Store ├── CSSSelectorTest.h ├── CSSSelectorTest.m ├── ElementParserTest.h ├── ElementParserTest.m ├── Element_Test.h ├── Element_Test.m ├── NSString_HTML_Test.h ├── NSString_HTML_Test.m └── gizmodo.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/CDataChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CDataChunk.h -------------------------------------------------------------------------------- /Classes/CDataChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CDataChunk.m -------------------------------------------------------------------------------- /Classes/CSSPartMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSPartMatcher.h -------------------------------------------------------------------------------- /Classes/CSSPartMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSPartMatcher.m -------------------------------------------------------------------------------- /Classes/CSSSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelector.h -------------------------------------------------------------------------------- /Classes/CSSSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelector.m -------------------------------------------------------------------------------- /Classes/CSSSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelectorMatcher.h -------------------------------------------------------------------------------- /Classes/CSSSelectorMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelectorMatcher.m -------------------------------------------------------------------------------- /Classes/CSSSelectorPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelectorPart.h -------------------------------------------------------------------------------- /Classes/CSSSelectorPart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CSSSelectorPart.m -------------------------------------------------------------------------------- /Classes/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/Chunk.h -------------------------------------------------------------------------------- /Classes/Chunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/Chunk.m -------------------------------------------------------------------------------- /Classes/CommentChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CommentChunk.h -------------------------------------------------------------------------------- /Classes/CommentChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/CommentChunk.m -------------------------------------------------------------------------------- /Classes/DoctypeChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/DoctypeChunk.h -------------------------------------------------------------------------------- /Classes/DoctypeChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/DoctypeChunk.m -------------------------------------------------------------------------------- /Classes/DocumentRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/DocumentRoot.h -------------------------------------------------------------------------------- /Classes/DocumentRoot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/DocumentRoot.m -------------------------------------------------------------------------------- /Classes/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/Element.h -------------------------------------------------------------------------------- /Classes/Element.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/Element.m -------------------------------------------------------------------------------- /Classes/ElementParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/ElementParser.h -------------------------------------------------------------------------------- /Classes/ElementParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/ElementParser.m -------------------------------------------------------------------------------- /Classes/EntityChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/EntityChunk.h -------------------------------------------------------------------------------- /Classes/EntityChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/EntityChunk.m -------------------------------------------------------------------------------- /Classes/NSString_HTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/NSString_HTML.h -------------------------------------------------------------------------------- /Classes/NSString_HTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/NSString_HTML.m -------------------------------------------------------------------------------- /Classes/ProcessingInstructionChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/ProcessingInstructionChunk.h -------------------------------------------------------------------------------- /Classes/ProcessingInstructionChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/ProcessingInstructionChunk.m -------------------------------------------------------------------------------- /Classes/TagChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/TagChunk.h -------------------------------------------------------------------------------- /Classes/TagChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/TagChunk.m -------------------------------------------------------------------------------- /Classes/TxtChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/TxtChunk.h -------------------------------------------------------------------------------- /Classes/TxtChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/TxtChunk.m -------------------------------------------------------------------------------- /Classes/URLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/URLParser.h -------------------------------------------------------------------------------- /Classes/URLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Classes/URLParser.m -------------------------------------------------------------------------------- /Code Overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Code Overview.txt -------------------------------------------------------------------------------- /Demo/Classes/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Classes/DemoAppDelegate.h -------------------------------------------------------------------------------- /Demo/Classes/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Classes/DemoAppDelegate.m -------------------------------------------------------------------------------- /Demo/Classes/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Classes/DemoViewController.h -------------------------------------------------------------------------------- /Demo/Classes/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Classes/DemoViewController.m -------------------------------------------------------------------------------- /Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/DemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/DemoViewController.xib -------------------------------------------------------------------------------- /Demo/Demo_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/Demo_Prefix.pch -------------------------------------------------------------------------------- /Demo/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/MainWindow.xib -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/main.m -------------------------------------------------------------------------------- /Demo/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/source.html -------------------------------------------------------------------------------- /Demo/source2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Demo/source2.html -------------------------------------------------------------------------------- /ElementParser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/ElementParser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ElementParser_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/ElementParser_Prefix.pch -------------------------------------------------------------------------------- /GPL v3 Liscense.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/GPL v3 Liscense.pdf -------------------------------------------------------------------------------- /HTML Entities.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/HTML Entities.plist -------------------------------------------------------------------------------- /Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Read Me.txt -------------------------------------------------------------------------------- /Test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/.DS_Store -------------------------------------------------------------------------------- /Test/CSSSelectorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/CSSSelectorTest.h -------------------------------------------------------------------------------- /Test/CSSSelectorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/CSSSelectorTest.m -------------------------------------------------------------------------------- /Test/ElementParserTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/ElementParserTest.h -------------------------------------------------------------------------------- /Test/ElementParserTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/ElementParserTest.m -------------------------------------------------------------------------------- /Test/Element_Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/Element_Test.h -------------------------------------------------------------------------------- /Test/Element_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/Element_Test.m -------------------------------------------------------------------------------- /Test/NSString_HTML_Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/NSString_HTML_Test.h -------------------------------------------------------------------------------- /Test/NSString_HTML_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/NSString_HTML_Test.m -------------------------------------------------------------------------------- /Test/gizmodo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Objective3/ElementParser/HEAD/Test/gizmodo.xml --------------------------------------------------------------------------------