From c86b209fbe67cd890e827b7d85033d41c7c21dfa Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Sat, 3 Dec 2022 23:27:01 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=90=9C=E7=B4=A2=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E6=9F=A5=E8=AF=A2=20https://github.com/siyua?= =?UTF-8?q?n-note/siyuan/issues/6589?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/conf/criterion.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/kernel/conf/criterion.go b/kernel/conf/criterion.go index e2a86b9f7..27b16cbc1 100644 --- a/kernel/conf/criterion.go +++ b/kernel/conf/criterion.go @@ -33,15 +33,15 @@ type Criterion struct { } type CriterionTypes struct { - mathBlock bool - table bool - blockquote bool - superBlock bool - paragraph bool - document bool - heading bool - list bool - listItem bool - codeBlock bool - htmlBlock bool + MathBlock bool `json:"mathBlock"` + Table bool `json:"table"` + Blockquote bool `json:"blockquote"` + SuperBlock bool `json:"superBlock"` + Paragraph bool `json:"paragraph"` + Document bool `json:"document"` + Heading bool `json:"heading"` + List bool `json:"list"` + ListItem bool `json:"listItem"` + CodeBlock bool `json:"codeBlock"` + HtmlBlock bool `json:"htmlBlock"` }