├── .editorconfig ├── .gitattributes ├── .gitignore ├── HtmlMonkey ├── AttributeSelector.cs ├── AttributeSelectorMode.cs ├── CDataDefinition.cs ├── GlobalSuppressions.cs ├── HtmlAttribute.cs ├── HtmlAttributeCollection.cs ├── HtmlDocument.cs ├── HtmlExtensionMethods.cs ├── HtmlMonkey.csproj ├── HtmlNode.cs ├── HtmlNodeCollection.cs ├── HtmlParser.cs ├── HtmlRules.cs ├── HtmlTagAttributes.cs ├── HtmlTagRules.cs ├── Selector.cs ├── SelectorCollection.cs └── TextParser.cs ├── HtmlMonkeyTests ├── AttributeComparer.cs ├── FindTests.cs ├── HandleBadMarkupTests.cs ├── HeaderTests.cs ├── HtmlAttributeCollectionTests.cs ├── HtmlMonkeyTests.csproj ├── NavigationTests.cs ├── ParserTests.cs └── TestNodes.cs ├── License.txt ├── Logo_64x64.png ├── README.md ├── TestApplication ├── DetailsForm.Designer.cs ├── DetailsForm.cs ├── DetailsForm.resx ├── Extensions.cs ├── HtmlVisualizer.Designer.cs ├── HtmlVisualizer.cs ├── HtmlVisualizer.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NodeVisualizer.cs ├── Program.cs ├── SearchForm.Designer.cs ├── SearchForm.cs ├── SearchForm.resx ├── TestApplication.csproj ├── VisualizerForm.Designer.cs ├── VisualizerForm.cs └── VisualizerForm.resx └── TestHtmlMonkey.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/.gitignore -------------------------------------------------------------------------------- /HtmlMonkey/AttributeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/AttributeSelector.cs -------------------------------------------------------------------------------- /HtmlMonkey/AttributeSelectorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/AttributeSelectorMode.cs -------------------------------------------------------------------------------- /HtmlMonkey/CDataDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/CDataDefinition.cs -------------------------------------------------------------------------------- /HtmlMonkey/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/GlobalSuppressions.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlAttribute.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlAttributeCollection.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlDocument.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlExtensionMethods.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlMonkey.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlMonkey.csproj -------------------------------------------------------------------------------- /HtmlMonkey/HtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlNode.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlNodeCollection.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlParser.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlRules.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlTagAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlTagAttributes.cs -------------------------------------------------------------------------------- /HtmlMonkey/HtmlTagRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/HtmlTagRules.cs -------------------------------------------------------------------------------- /HtmlMonkey/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/Selector.cs -------------------------------------------------------------------------------- /HtmlMonkey/SelectorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/SelectorCollection.cs -------------------------------------------------------------------------------- /HtmlMonkey/TextParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkey/TextParser.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/AttributeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/AttributeComparer.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/FindTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/FindTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/HandleBadMarkupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/HandleBadMarkupTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/HeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/HeaderTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/HtmlAttributeCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/HtmlAttributeCollectionTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/HtmlMonkeyTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/HtmlMonkeyTests.csproj -------------------------------------------------------------------------------- /HtmlMonkeyTests/NavigationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/NavigationTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/ParserTests.cs -------------------------------------------------------------------------------- /HtmlMonkeyTests/TestNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/HtmlMonkeyTests/TestNodes.cs -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/License.txt -------------------------------------------------------------------------------- /Logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/Logo_64x64.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/README.md -------------------------------------------------------------------------------- /TestApplication/DetailsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/DetailsForm.Designer.cs -------------------------------------------------------------------------------- /TestApplication/DetailsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/DetailsForm.cs -------------------------------------------------------------------------------- /TestApplication/DetailsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/DetailsForm.resx -------------------------------------------------------------------------------- /TestApplication/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/Extensions.cs -------------------------------------------------------------------------------- /TestApplication/HtmlVisualizer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/HtmlVisualizer.Designer.cs -------------------------------------------------------------------------------- /TestApplication/HtmlVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/HtmlVisualizer.cs -------------------------------------------------------------------------------- /TestApplication/HtmlVisualizer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/HtmlVisualizer.resx -------------------------------------------------------------------------------- /TestApplication/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/MainForm.Designer.cs -------------------------------------------------------------------------------- /TestApplication/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/MainForm.cs -------------------------------------------------------------------------------- /TestApplication/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/MainForm.resx -------------------------------------------------------------------------------- /TestApplication/NodeVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/NodeVisualizer.cs -------------------------------------------------------------------------------- /TestApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/Program.cs -------------------------------------------------------------------------------- /TestApplication/SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/SearchForm.Designer.cs -------------------------------------------------------------------------------- /TestApplication/SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/SearchForm.cs -------------------------------------------------------------------------------- /TestApplication/SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/SearchForm.resx -------------------------------------------------------------------------------- /TestApplication/TestApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/TestApplication.csproj -------------------------------------------------------------------------------- /TestApplication/VisualizerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/VisualizerForm.Designer.cs -------------------------------------------------------------------------------- /TestApplication/VisualizerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/VisualizerForm.cs -------------------------------------------------------------------------------- /TestApplication/VisualizerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestApplication/VisualizerForm.resx -------------------------------------------------------------------------------- /TestHtmlMonkey.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftCircuits/HtmlMonkey/HEAD/TestHtmlMonkey.sln --------------------------------------------------------------------------------