HTMLString icon indicating copy to clipboard operation
HTMLString copied to clipboard

An HTML parser written in JavaScript that's probably not what you're looking for.

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

Example: ```javascript blah = new HTMLString.Tag('a', { 'href': '/test.html', 'data-test': JSON.stringify({'id': 12, 'test': 'This is a test'}) }); blah.head(); ``` It currently outputs: ```html ``` It should output: ```html ```...

enhancement

console.log((new HTMLString.String('\u00a0')).html()) // or console.log((new HTMLString.String(' ')).html()) Produces: " " Expected: " "

bug
minor