Fix blank space above tables issue (#952)
parent
5162ea7bf2
commit
fefda09c2b
|
@ -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":
|
||||||
|
|
Loading…
Reference in New Issue