@@ -25,7 +25,7 @@ const parse = require('html-react-parser');
25
25
parse (' <p>Hello, World!</p>' ); // React.createElement('p', {}, 'Hello, World!')
26
26
```
27
27
28
- [ Repl.it ] ( https://repl.it /@remarkablemark/html-react-parser ) | [ JSFiddle] ( https://jsfiddle.net/remarkablemark/7v86d800/ ) | [ CodeSandbox] ( https://codesandbox.io/s/940pov1l4w ) | [ TypeScript] ( https://codesandbox.io/s/html-react-parser-z0kp6 ) | [ Examples] ( https://github.com/remarkablemark/html-react-parser/tree/master/examples )
28
+ [ Replit ] ( https://replit.com /@remarkablemark/html-react-parser ) | [ JSFiddle] ( https://jsfiddle.net/remarkablemark/7v86d800/ ) | [ CodeSandbox] ( https://codesandbox.io/s/940pov1l4w ) | [ TypeScript] ( https://codesandbox.io/s/html-react-parser-z0kp6 ) | [ Examples] ( https://github.com/remarkablemark/html-react-parser/tree/master/examples )
29
29
30
30
<details >
31
31
<summary >Table of Contents</summary >
@@ -202,7 +202,7 @@ If you're having issues take a look at our [Create React App example](./examples
202
202
203
203
#### replace element and children
204
204
205
- Replace the element and its children (see [ demo] ( https://repl.it /@remarkablemark/html-react-parser-replace-example ) ):
205
+ Replace the element and its children (see [ demo] ( https://replit.com /@remarkablemark/html-react-parser-replace-example ) ):
206
206
207
207
``` jsx
208
208
import parse , { domToReact } from ' html-react-parser' ;
@@ -283,7 +283,7 @@ HTML output:
283
283
284
284
#### replace and remove element
285
285
286
- [ Exclude] ( https://repl.it /@remarkablemark/html-react-parser-56 ) an element from rendering by replacing it with ` <React.Fragment> ` :
286
+ [ Exclude] ( https://replit.com /@remarkablemark/html-react-parser-56 ) an element from rendering by replacing it with ` <React.Fragment> ` :
287
287
288
288
``` jsx
289
289
parse (' <p><br id="remove"></p>' , {
@@ -415,7 +415,7 @@ If the parser throws an erorr, check if your arguments are valid. See ["Does inv
415
415
416
416
### Is SSR supported?
417
417
418
- Yes, server-side rendering on Node.js is supported by this library. See [ demo] ( https://repl.it /@remarkablemark/html-react-parser-SSR ) .
418
+ Yes, server-side rendering on Node.js is supported by this library. See [ demo] ( https://replit.com /@remarkablemark/html-react-parser-SSR ) .
419
419
420
420
### Elements aren't nested correctly
421
421
@@ -450,7 +450,7 @@ parse('<CustomElement>', options); // React.createElement('CustomElement')
450
450
> Warning: <CustomElement> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
451
451
> ```
452
452
453
- See [#62](https://github.com/remarkablemark/html-react-parser/issues/62) and [example](https://repl.it /@remarkablemark/html-react-parser-62).
453
+ See [#62](https://github.com/remarkablemark/html-react-parser/issues/62) and [example](https://replit.com /@remarkablemark/html-react-parser-62).
454
454
455
455
### TS Error: Property 'attribs' does not exist on type 'DOMNode'
456
456
0 commit comments