in apps-rendering/src/renderer.ts [235:275]
href: withDefault('')(getHref(node)),
format,
key,
isEditions,
},
children,
);
case 'BLOCKQUOTE':
return isEditions
? h('blockquote', { key }, children)
: h(Blockquote, { key, format }, children);
case 'STRONG':
return styledH(
'strong',
{ css: { fontWeight: 'bold' }, key },
children,
);
case 'EM':
return styledH(
'em',
{ css: { fontStyle: 'italic' }, key },
children,
);
case 'B':
return h('b', { key }, children);
case 'BR':
return h('br', { key }, null);
case 'UL':
return h(List, { children, format, usePillarColour: false });
case 'OL':
return h(OrderedList, { children });
case 'LI':
return h(ListItem, { children });
case 'MARK':
return styledH('mark', { key }, children);
case 'SUB':
return h('sub', { key }, children);
case 'SUP':
return styledH(
'sup',
{