Closed tringas closed 4 years ago
add this to the convertToHTML:
entityToHTML: (entity, originalText) => {
if (entity.type === 'LINK') {
return <a href={entity.data.url}>{originalText}</a>;
}
return originalText;
}
Thank you for your work on this, Btw I don't have experience with Draftjs but I'm successfully using Dante2 on my project but I'm having one problem with anchor tag when I use convertToHTML they are rendering as unstyled paragraph instead of anchor.
Is there a easy way I can specify how the anchor tag should looks like I'm doing with images
thank you