Nikolay Khitrin
Results
1
comments of
Nikolay Khitrin
Quick and dirty workaround: preprocessNodes: nodes => nodes.map(node => { //FIXME: https://github.com/wrakky/react-html-parser/issues/39 if (isEmptyTextNode(node)) { node.type = "protected"; } return node; }), transform: (node) => { //FIXME: https://github.com/wrakky/react-html-parser/issues/39 if (node.type...