diff --git a/app/src/util/newFile.ts b/app/src/util/newFile.ts index 6ee5d02e5..32c1b205d 100644 --- a/app/src/util/newFile.ts +++ b/app/src/util/newFile.ts @@ -242,7 +242,7 @@ export const newFileByName = (app: App, value: string) => { }; export const newFileBySelect = (protyle: IProtyle, selectText: string, nodeElement: HTMLElement, pathDir: string, targetNotebookId: string) => { - const newFileName = replaceFileName(selectText.trim() ? selectText.trim() : protyle.lute.BlockDOM2Content(nodeElement.outerHTML).replace(/\n/g, "")) || window.siyuan.languages.untitled; + const newFileName = replaceFileName(selectText.trim() ? selectText.trim() : protyle.lute.BlockDOM2Content(nodeElement.outerHTML).replace(/\n/g, "").trim()) || window.siyuan.languages.untitled; const hPath = pathPosix().join(pathDir, newFileName); fetchPost("/api/filetree/getIDsByHPath", { path: hPath,