{"id":24395683,"url":"https://github.com/anglesharp/anglesharp.demos.indotnet","last_synced_at":"2026-04-13T11:31:30.427Z","repository":{"id":90453246,"uuid":"73755983","full_name":"AngleSharp/AngleSharp.Demos.Indotnet","owner":"AngleSharp","description":":angel: Demo application for the talk at the Ingolstadt .NET usergroup in November 2016.","archived":false,"fork":false,"pushed_at":"2016-11-14T23:24:52.000Z","size":11,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-01T09:08:47.884Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AngleSharp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-11-14T23:24:07.000Z","updated_at":"2018-11-26T16:30:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"a4ef3b8f-d664-4a1b-a64e-f9259dd6c48d","html_url":"https://github.com/AngleSharp/AngleSharp.Demos.Indotnet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AngleSharp/AngleSharp.Demos.Indotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AngleSharp%2FAngleSharp.Demos.Indotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AngleSharp%2FAngleSharp.Demos.Indotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AngleSharp%2FAngleSharp.Demos.Indotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AngleSharp%2FAngleSharp.Demos.Indotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AngleSharp","download_url":"https://codeload.github.com/AngleSharp/AngleSharp.Demos.Indotnet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AngleSharp%2FAngleSharp.Demos.Indotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31751223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-19T20:59:50.379Z","updated_at":"2026-04-13T11:31:30.423Z","avatar_url":"https://github.com/AngleSharp.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AngleSharp.Demos.Indotnet\n\nSimple and sweet demonstration playground for AngleSharp as shown in the Indotnet usergroup on November 2016.\n\nIf you have anything to add to the demo, then feel free to do so. Push requests are always highly appreciated.\n\n## Companion Slides\n\nThe slides for the talk can be found at [talks.florian-rappl.de/AngleSharp-Indotnet/](http://talks.florian-rappl.de/AngleSharp-Indotnet/?full#final). They are rather sparse and do not provide the full information spread during the talk.\n\n## Running the Sample\n\nThe demo is a Visual Studio 2015 solution that uses C# 6 together with the AngleSharp library. For demonstration purposes also the AngleSharp.Scripting.JavaScript library has been loaded.\n\nThe application is a WPF UI that uses the MVVM pattern. The main viewmodel is the `MainViewModel`. Here the connection to the transformation is designed. The `ParseAsync` method is called when the source code (via the `Source` property) changes.\n\nGenerally, the code is quite similar to the demo for the Munich.NET usergroup, however, this one does not include any CSS parts and focuses on a live preview.\n\n## Playing around with the Sample\n\nThe thing that can be done is typing in elemental parts of any HTML document such as `\u003c!doctype html\u003e`. Seeing it being interpreted in real time (e.g., first as a text, then a comment, finally the doctype) is wonderful - educational and working-wise. Also complex examples can be shown in no time; how HTML5 treats nested tables or complicated formatting.\n\nThe scoping rules (applied to paragraphs `\u003cp\u003e` or list items `\u003cli\u003e` for example) can also be demonstrated easily. Plus we get some immediate grasp on topics such as raw text (`title` element) or the `\u003cplaintext\u003e` tag (there is no way out!).\n\nAnother thing is that a JavaScript engine has been integrated. Thus parsing the following chunk of HTML code actually does something:\n\n```html\n\u003cscript\u003econsole.log('Hi Mum!')\u003c/script\u003e\n```\n\nThe debug output view of Visual Studio should display \"Hi Mum!\". This can be abused as such:\n\n```html\n\u003cscript\u003edocument.write('\u003cspan\u003eagain\u003c/span\u003e')\u003c/script\u003e\n```\n\nInserting this and pressing \"Transform!\" multiple types will repeat the *again* in the `span` element. This is a nice way to \"grow\" a document. Granted, a rather boring document.\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 AngleSharp\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanglesharp%2Fanglesharp.demos.indotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanglesharp%2Fanglesharp.demos.indotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanglesharp%2Fanglesharp.demos.indotnet/lists"}