Forbes magazine logo Ranked Best Coding Bootcamps 2023

How to solve Draft.js convertFromHTML combining adjacent paragraphs <p> tags into one contentBlock

Altcademy Team wrote on 7 February 2018

I solved this by adding a custom DraftBlockRenderMap element for paragraph <p> tags for convertFromHTML because the default one doesn't contain it. Check out the default elements DefaultDraftBlockRenderMap. Then I will loop through the contentBlocks and change the type of 'p' into 'unstyled'.
export const CustomConvertFromHTML = (html) => { // Correctly seperates paragraphs into their own blocks const blockRenderMap = DefaultDraftBlockRenderMap.set('p', { element: 'p' }); const blocksFromHTML = convertFromHTML(html, getSafeBodyFromHTML, blockRenderMap); blocksFromHTML.contentBlocks = blocksFromHTML.contentBlocks.map(block => (block.get('type') === 'p' ? block.set('type', 'unstyled') : block)); return blocksFromHTML; };

Trusted by

Students and instructors from world-class organizations

Imperial College London
Carnegie Mellon University
City University of Hong Kong
Hack Reactor
Cisco Meraki
University of Oxford
Swift
Bazaarvoice
Waterloo
Uber
AtlanTech
Tumblr
Boston College
Bombardier Aerospace
University of St. Andrews
New York University
Minerva Schools at KGI
Merrill Lynch
Riot Games
JP Morgan
Morgan Stanley
Advanced Placement®
Google
KPMG
The University of Hong Kong
University of Toronto
SCMP
Moat
Zynga
Hello Toby
Deloitte
Goldman Sachs
Yahoo
HSBC
General Assembly
Tesla
McGill University
Microsoft

Join the upcoming Cohort #89

Enroll for May 6th, 2024