Fix blank space above tables issue (#952)

pull/958/head
Eric Yang 2024-07-17 22:49:48 +12:00 committed by GitHub
parent 5162ea7bf2
commit fefda09c2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -437,7 +437,7 @@ function render(
body: [ body: [
{ {
name: "tr", name: "tr",
body: cleanTags(mapRender(t.children!)), body: cleanTags(mapRender(t.children!), true),
}, },
], ],
}; };
@ -470,7 +470,7 @@ function render(
} }
return { return {
name: "tr", name: "tr",
body: cleanTags(mapRender(newChildren)), body: cleanTags(mapRender(newChildren), true),
}; };
} }
case "Attribute": case "Attribute":