feat: add better provider support, icons, regen, and a lot more
This commit is contained in:
@@ -19,6 +19,21 @@ const render = () => {
|
||||
}
|
||||
}
|
||||
|
||||
if (node.tagName === 'table') {
|
||||
return h('div', { class: 'table-wrapper' }, [
|
||||
h(
|
||||
'table',
|
||||
node.properties,
|
||||
node.children?.map((child: any, index: number) =>
|
||||
h(resolveComponent('MarkdownAstNode'), {
|
||||
node: child,
|
||||
key: `table-child-${index}`
|
||||
})
|
||||
)
|
||||
)
|
||||
]);
|
||||
}
|
||||
|
||||
return h(
|
||||
node.tagName,
|
||||
node.properties,
|
||||
|
||||
Reference in New Issue
Block a user