Skip to content

Releases: remarkablemark/html-react-parser

v0.1.0

07 Jun 21:28
Compare
Choose a tag to compare

0.1.0 (2016-10-14)

Changed

  • Replace HTML to DOM converter with html-dom-parser (#28)
    • Save html-dom-parser
    • Remove domhandler and htmlparser2
  • Update tests and README

v0.0.7

07 Jun 21:27
Compare
Choose a tag to compare

0.0.7 (2016-09-27)

Added

  • Examples of using the parser with script tag and RequireJS (#26)

Changed

  • Update build (#25)
  • Update README description, instructions, and examples (#27)

v0.0.6

07 Jun 21:27
Compare
Choose a tag to compare

0.0.6 (2016-09-27)

Added

  • README example with advanced usage of replace option from @poacher2k (#17)
  • Contributors section to README (#21)

Changed

  • Use webpack to build UMD bundle (#22)

Fixed

  • Regex bug on client parser (#24)

v0.0.5

07 Jun 21:26
Compare
Choose a tag to compare

0.0.5 (2016-08-30)

Changed

  • Remove key parameter from replace and use React.cloneElement (#18)

Fixed

  • Parsing of <script> and <style> tags (#20)

v0.0.4

07 Jun 21:26
Compare
Choose a tag to compare

0.0.4 (2016-08-29)

Added

  • Send coverage report generated by istanbul to coveralls (#12)
  • Display badges in README (#13, #15)
  • Update parser's replace option with additional 2nd parameter key (#16)

Fixed

  • Void elements (e.g., <img />) should not have children (#16)
  • Set default key parameter for sibling elements due to keys warning (#16)

v0.0.3

07 Jun 21:26
Compare
Choose a tag to compare

0.0.3 (2016-08-24)

Added

  • Make package UMD compatible (#9)
  • Throw an error if first argument is not a string (#10)

Changed

  • Differentiate between node and browser environments for parser (#5)

Fixed

  • HTML to DOM conversion on the client (#10)

v0.0.2

07 Jun 21:25
Compare
Choose a tag to compare

0.0.2 (2016-08-23)

Added

Fixed

  • package.json peerDependencies for react and react-dom

v0.0.1

07 Jun 21:23
Compare
Choose a tag to compare

0.0.1 (2016-08-23)

Added

  • HTML to React parser which consists of:
    • HTML string to DOM object converter
    • DOM object to React nodes converter
  • Tests
  • README