A privacy-first, self-hosted, fully open source personal knowledge management software, written in typescript and golang. (PERSONAL FORK)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:art: Ignore the last empty paragraph block when exporting merged sub-documents https://github.com/siyuan-note/siyuan/issues/15028

Daniel b4667922 13e61807

+6
+6
kernel/model/export_merge.go
··· 60 60 break 61 61 } 62 62 } 63 + 64 + if ast.NodeParagraph == insertPoint.Type && nil == insertPoint.FirstChild { 65 + // 删除空段落 66 + // Ignore the last empty paragraph block when exporting merged sub-documents https://github.com/siyuan-note/siyuan/issues/15028 67 + insertPoint.Unlink() 68 + } 63 69 return 64 70 } 65 71