mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-14 08:34:25 +03:00
GraphContent: support strikethrough
This commit is contained in:
parent
e71d6773a7
commit
f8c8033ea2
@ -260,14 +260,13 @@ const renderers = {
|
||||
);
|
||||
},
|
||||
strong: ({ children }) => {
|
||||
return (
|
||||
<b>{children}</b>
|
||||
);
|
||||
return <b>{children}</b>;
|
||||
},
|
||||
emphasis: ({ children }) => {
|
||||
return (
|
||||
<i>{children}</i>
|
||||
);
|
||||
return <i>{children}</i>;
|
||||
},
|
||||
delete: ({ children }) => {
|
||||
return <del> {children}</del>;
|
||||
},
|
||||
blockquote: ({ children, depth, tall, ...rest }) => {
|
||||
if (depth > 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user