This commit is contained in:
Liang Ding 2022-12-03 23:27:01 +08:00
parent 72e966af84
commit c86b209fbe
No known key found for this signature in database
GPG Key ID: 136F30F901A2231D

View File

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