diff --git a/plugs/markdown/markdown_render.ts b/plugs/markdown/markdown_render.ts index 63a7543a..fa720556 100644 --- a/plugs/markdown/markdown_render.ts +++ b/plugs/markdown/markdown_render.ts @@ -437,7 +437,7 @@ function render( body: [ { name: "tr", - body: cleanTags(mapRender(t.children!)), + body: cleanTags(mapRender(t.children!), true), }, ], }; @@ -470,7 +470,7 @@ function render( } return { name: "tr", - body: cleanTags(mapRender(newChildren)), + body: cleanTags(mapRender(newChildren), true), }; } case "Attribute":