html-react-parser 2.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/dist/html-react-parser.js +318 -299
- package/dist/html-react-parser.js.map +1 -1
- package/dist/html-react-parser.min.js +1 -1
- package/dist/html-react-parser.min.js.map +1 -1
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ parse('<p>Hello, World!</p>'); // React.createElement('p', {}, 'Hello, World!')
|
|
|
41
41
|
- [htmlparser2](#htmlparser2)
|
|
42
42
|
- [trim](#trim)
|
|
43
43
|
- [Migration](#migration)
|
|
44
|
+
- [v3.0.0](#v300)
|
|
44
45
|
- [v2.0.0](#v200)
|
|
45
46
|
- [v1.0.0](#v100)
|
|
46
47
|
- [FAQ](#faq)
|
|
@@ -61,6 +62,7 @@ parse('<p>Hello, World!</p>'); // React.createElement('p', {}, 'Hello, World!')
|
|
|
61
62
|
- [Financial Contributors](#financial-contributors)
|
|
62
63
|
- [Individuals](#individuals)
|
|
63
64
|
- [Organizations](#organizations)
|
|
65
|
+
- [Enterprise](#enterprise)
|
|
64
66
|
- [Support](#support)
|
|
65
67
|
- [License](#license)
|
|
66
68
|
|
|
@@ -371,6 +373,10 @@ parse('<p> </p>', { trim: true }); // React.createElement('p')
|
|
|
371
373
|
|
|
372
374
|
## Migration
|
|
373
375
|
|
|
376
|
+
### v3.0.0
|
|
377
|
+
|
|
378
|
+
[domhandler](https://github.com/fb55/domhandler) has been upgraded to v5 so some [parser options](https://github.com/fb55/htmlparser2/wiki/Parser-options) like `normalizeWhitespace` have been removed.
|
|
379
|
+
|
|
374
380
|
### v2.0.0
|
|
375
381
|
|
|
376
382
|
Since [v2.0.0](https://github.com/remarkablemark/html-react-parser/releases/tag/v2.0.0), Internet Explorer (IE) is no longer supported.
|
|
@@ -535,6 +541,12 @@ Support this project with your organization. Your logo will show up here with a
|
|
|
535
541
|
[](https://opencollective.com/html-react-parser/organization/8/website)
|
|
536
542
|
[](https://opencollective.com/html-react-parser/organization/9/website)
|
|
537
543
|
|
|
544
|
+
## Enterprise
|
|
545
|
+
|
|
546
|
+
Available as part of the Tidelift Subscription.
|
|
547
|
+
|
|
548
|
+
The maintainers of html-react-parser and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-html-react-parser?utm_source=npm-html-react-parser&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
|
|
549
|
+
|
|
538
550
|
## Support
|
|
539
551
|
|
|
540
552
|
- [GitHub Sponsors](https://b.remarkabl.org/github-sponsors)
|