Skip to content

Commit 4fe86ef

Browse files
docs(readme): update replit links
1 parent aa422c3 commit 4fe86ef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const parse = require('html-react-parser');
2525
parse('<p>Hello, World!</p>'); // React.createElement('p', {}, 'Hello, World!')
2626
```
2727

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)
2929

3030
<details>
3131
<summary>Table of Contents</summary>
@@ -202,7 +202,7 @@ If you're having issues take a look at our [Create React App example](./examples
202202

203203
#### replace element and children
204204

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)):
206206

207207
```jsx
208208
import parse, { domToReact } from 'html-react-parser';
@@ -283,7 +283,7 @@ HTML output:
283283

284284
#### replace and remove element
285285

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>`:
287287

288288
```jsx
289289
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
415415

416416
### Is SSR supported?
417417

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).
419419

420420
### Elements aren't nested correctly
421421

@@ -450,7 +450,7 @@ parse('<CustomElement>', options); // React.createElement('CustomElement')
450450
> Warning: <CustomElement> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
451451
> ```
452452
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).
454454
455455
### TS Error: Property 'attribs' does not exist on type 'DOMNode'
456456

0 commit comments

Comments
 (0)