contentful rte edit link type
const options = {
renderNode: {
[INLINES. HYPERLINK]: (node, next) => {
return `<a href="${node.data.uri}"${node.data.uri.startsWith('https://mydomain.com') ? '' : ' target="_blank"'}>${next(node.content)}</a>`;
}
}
}