Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaMgla authored Dec 6, 2024
1 parent 62441a3 commit d484a0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/plugins/table/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ export const tablePlugin = realmPlugin<GfmTableOptions>({
// export
[addLexicalNode$]: TableNode,
[addExportVisitor$]: LexicalTableVisitor,
[addToMarkdownExtension$]: gfmTableToMarkdown({ tableCellPadding: params?.tableCellPadding ?? true, tablePipeAlign: params?.tablePipeAlign ?? true })
[addToMarkdownExtension$]: gfmTableToMarkdown({
tableCellPadding: params?.tableCellPadding ?? true,
tablePipeAlign: params?.tablePipeAlign ?? true
})
})
}
})

0 comments on commit d484a0b

Please sign in to comment.