@@ -245,7 +245,7 @@ If you're having issues, take a look at our [Create React App example](./example
245245
246246#### replace element and children
247247
248- Replace the element and its children (see [ demo ] ( https://replit.com/@remarkablemark/html-react-parser-replace-example ) ) :
248+ Replace the element and its children:
249249
250250``` tsx
251251import parse , { domToReact } from ' html-react-parser' ;
@@ -336,7 +336,7 @@ parse(html, options);
336336
337337#### replace and remove element
338338
339- [ Exclude] ( https://replit.com/@remarkablemark/html-react-parser-56 ) an element from rendering by replacing it with ` <React.Fragment> ` :
339+ Exclude an element from rendering by replacing it with ` <React.Fragment> ` :
340340
341341``` tsx
342342parse (' <p><br id="remove"></p>' , {
@@ -547,7 +547,7 @@ If the parser throws an error, check if your arguments are valid (see ["Does inv
547547
548548### Is SSR supported?
549549
550- Yes, server-side rendering on Node.js is supported by this library (see [ demo ] ( https://replit.com/@remarkablemark/html-react-parser-SSR ) ).
550+ Yes, server-side rendering on Node.js is supported by this library:
551551
552552### Elements aren't nested correctly
553553
@@ -580,7 +580,7 @@ parse('<CustomElement>', options); // React.createElement('CustomElement')
580580> Warning: <CustomElement> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
581581> ```
582582
583- See [#62](https://github.com/remarkablemark/html-react-parser/issues/62) and [example](https://replit.com/@remarkablemark/html-react-parser-62) .
583+ See [#62](https://github.com/remarkablemark/html-react-parser/issues/62).
584584
585585### TS Error: Property 'attribs' does not exist on type 'DOMNode'
586586
0 commit comments