사이트 설정 관리 추가

This commit is contained in:
2026-05-02 16:37:11 +09:00
parent d5666fdcc3
commit 27cf05aba6
18 changed files with 431 additions and 25 deletions

View File

@@ -417,14 +417,6 @@ const normalizeTrailingTextBlock = () => {
isNormalizingTrailingBlock.value = true
while (
editorBlocks.value.length > 1
&& isBlankParagraphBlock(editorBlocks.value.at(-1))
&& isBlankParagraphBlock(editorBlocks.value.at(-2))
) {
editorBlocks.value.pop()
}
if (!isBlankParagraphBlock(editorBlocks.value.at(-1))) {
editorBlocks.value.push(createEditorBlock('paragraph'))
}