htmlparser icon indicating copy to clipboard operation
htmlparser copied to clipboard

Fast and lightweight C++ HTML parser

Results 2 htmlparser issues
Sort by recently updated
recently updated
newest added

This pull request adds a set of tests for basic functionality that have been migrated from the well-known jsoup library. These tests have been run and verified to ensure that...

the to_html method is not handling the title tag properly, and there are similar issues with other tags such as iframe. ``` TEST(test, handlesKnownEmptyTitle){ string h = "One"; parser parse;...

enhancement