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

πŸ“ HTML to React parser.

Results 31 html-react-parser issues
Sort by recently updated
recently updated
newest added

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.33.0 to 5.33.1. Release notes Sourced from @​typescript-eslint/parser's releases. v5.33.1 5.33.1 (2022-08-15) Bug Fixes missing placeholders in violation messages for no-unnecessary-type-constraint and no-unsafe-argument (and enable eslint-plugin/recommended rules...

dependencies

Bumps [html-dom-parser](https://github.com/remarkablemark/html-dom-parser) from 3.0.1 to 3.1.0. Release notes Sourced from html-dom-parser's releases. v3.1.0 3.1.0 (2022-08-16) Features add esm for client (0c4c2b6) Changelog Sourced from html-dom-parser's changelog. 3.1.0 (2022-08-16) Features add...

dependencies

Fixes #625 ## Checklist: - [x] [Conventional Commits](https://www.conventionalcommits.org/) - [ ] Tests

bug

## Expected Behavior domNode instanceof Element should be true ## Actual Behavior domNode instanceof Element is false ## Steps to Reproduce After upgrading from version 1.4 to 3.0 domNode instanceof...

question
wontfix

Heya! I'm trying to parse HTML into a nextjs component. I have ``` const parsedHTML = parse(props.html,{ replace: domNode => { if(domNode.name == 'head'){ return {domNode.children} } ``` Which promptly...

question

An error occurred in the browser when executing the following code. This does not occur in VSCode. ```typescript // /src/App.tsx import parth, { Comment, Element, Node, ProcessingInstruction, Text } from...

The value of `` tags of `` are fixed. Converting their `value=` to `defaultValue=` results bug if the option label is different from the value. For example: ```html Less than...

CSS get leaked in my scenario whats the fix for that??

I'm in this kind of a situation where I should pass a unique key to the function, but couldn't do it. ``` const options = { key:"1" } {content.map((obj, i)...

question

Is it possible to get the inner html of a node or is it possible to convert a node back to a raw html string?

question