Sourced from react-markdown's releases.
10.0.0
- aaaa40b Remove support for
classNameprop see “Remove className”Full Changelog: https://github.com/remarkjs/react-markdown/compare/9.1.0...10.0.0
9.1.0
- 6ce120e Add support for async plugins by
@wooormin remarkjs/react-markdown#890Full Changelog: https://github.com/remarkjs/react-markdown/compare/9.0.3...9.1.0
Sourced from react-markdown's changelog.
10.0.0 - 2025-02-20
aaaa40bRemove support forclassNameprop migrate: see “RemoveclassName” belowRemove
classNameThe
classNameprop was removed. If you want to add classes to some element that wraps the markdown you can explicitly write that element and add the class to it. You can then choose yourself which tag name to use and whether to add other props.Before:
<Markdown className="markdown-body">{markdown}</Markdown>After:
<div className="markdown-body"> <Markdown>{markdown}</Markdown> </div>9.1.0 - 2025-02-20
6ce120eAdd support for async plugins