Skip to content

Commit

Permalink
Fix blank space above tables issue (#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
oneryx committed Jul 17, 2024
1 parent 5162ea7 commit fefda09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugs/markdown/markdown_render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ function render(
body: [
{
name: "tr",
body: cleanTags(mapRender(t.children!)),
body: cleanTags(mapRender(t.children!), true),
},
],
};
Expand Down Expand Up @@ -470,7 +470,7 @@ function render(
}
return {
name: "tr",
body: cleanTags(mapRender(newChildren)),
body: cleanTags(mapRender(newChildren), true),
};
}
case "Attribute":
Expand Down

0 comments on commit fefda09

Please sign in to comment.