From af26c0578391aed46111ccda97d4d1e2de3bc317 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Mon, 24 Oct 2022 11:17:10 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=94=AF=E6=8C=81=E9=9D=9E=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E5=A4=A7=E7=BA=B2=E5=BC=8F=E7=BC=A9=E5=87=BA=20https:?= =?UTF-8?q?//github.com/siyuan-note/siyuan/issues/4346?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/conf/editor.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/conf/editor.go b/kernel/conf/editor.go index 4a9ab19e5..8517617a7 100644 --- a/kernel/conf/editor.go +++ b/kernel/conf/editor.go @@ -36,6 +36,7 @@ type Editor struct { KaTexMacros string `json:"katexMacros"` // KeTex 宏定义 ReadOnly bool `json:"readOnly"` // 只读模式 EmbedBlockBreadcrumb bool `json:"embedBlockBreadcrumb"` // 嵌入块是否显示面包屑 + ListLogicalOutdent bool `json:"listLogicalOutdent"` // 列表逻辑反向缩进 } func NewEditor() *Editor { @@ -57,5 +58,6 @@ func NewEditor() *Editor { KaTexMacros: "{}", ReadOnly: false, EmbedBlockBreadcrumb: false, + ListLogicalOutdent: false, } }