We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96a2b8 commit b05f302Copy full SHA for b05f302
1 file changed
plugins/notion/src/blocksToHtml.ts
@@ -112,7 +112,7 @@ export function blocksToHtml(blocks: BlockObjectResponse[]) {
112
tableHasRowHeader = block.table.has_row_header
113
tableHasColumnHeader = block.table.has_column_header
114
break
115
- case "table_row":
+ case "table_row": {
116
// Check if this is the first row after a table block
117
const isFirstRow = blocks[i - 1]?.type === "table"
118
@@ -137,6 +137,7 @@ export function blocksToHtml(blocks: BlockObjectResponse[]) {
137
htmlContent += `</tbody></table>`
138
}
139
140
+ }
141
case "video": {
142
if (block.video.type !== "external") {
143
0 commit comments