GraphContent: fix emphasis

This commit is contained in:
Liam Fitzgerald 2021-05-06 13:58:19 +10:00
parent abe004044e
commit fad226cef5
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -260,7 +260,20 @@ const renderers = {
</Text>
);
},
strong: ({ children }) => {
return (
<Text fontWeight="bold">
{children}
</Text>
);
},
emphasis: ({ children }) => {
return (
<Text fontStyle="italic" fontSize="1" lineHeight={'20px'}>
{children}
</Text>
)
},
blockquote: ({ children, tall, ...rest }) => {
return (
<Text