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"` }