html-dom-parser icon indicating copy to clipboard operation
html-dom-parser copied to clipboard

📝 HTML to DOM parser.

Results 4 html-dom-parser issues
Sort by recently updated
recently updated
newest added

Bumps [eslint](https://github.com/eslint/eslint) from 8.22.0 to 8.23.0. Release notes Sourced from eslint's releases. v8.23.0 Features 3e5839e feat: Enable eslint.config.js lookup from CLI (#16235) (Nicholas C. Zakas) 30b1a2d feat: add allowEmptyCase option...

dependencies

The current implementation won't parse `` tags correctly. This is because `` tags use `node.content.childNodes` instead of `node.childNodes` for tracking their children. Related line: https://github.com/remarkablemark/html-dom-parser/blob/master/lib/client/utilities.js#L86

feature

## Expected Behavior html-dom-parser uses a server dom parser implementation on deno, similar to nodejs. But with guards in place if there is no document defined. ## Actual Behavior Throwing...

feature
question

## Expected Behavior Carriage return preserved in client parser: ```js import parse from 'html-dom-parser'; parse('\r\n'); // '\r\n' ``` ## Actual Behavior Carriage return stripped in client parser: ```js import parse...

bug