chore: update blocksuite to 0.0.0-20230512192655-e61e272b-nightly (#2352)

This commit is contained in:
Himself65
2023-05-13 04:39:05 +08:00
committed by GitHub
parent 00fd468e9b
commit b240a70e51
12 changed files with 172 additions and 131 deletions

View File

@@ -29,7 +29,7 @@ export const Export: FC<ShareMenuProps> = props => {
if (!contentParserRef.current) {
contentParserRef.current = new ContentParser(props.currentPage);
}
return contentParserRef.current.onExportHtml();
return contentParserRef.current.exportHtml();
}}
>
<ExportToHtmlIcon className={svgStyle} />
@@ -41,7 +41,7 @@ export const Export: FC<ShareMenuProps> = props => {
if (!contentParserRef.current) {
contentParserRef.current = new ContentParser(props.currentPage);
}
return contentParserRef.current.onExportMarkdown();
return contentParserRef.current.exportMarkdown();
}}
>
<ExportToMarkdownIcon className={svgStyle} />