🎨 Improve default search type filtering https://github.com/siyuan-note/siyuan/issues/11003

This commit is contained in:
Daniel 2024-04-12 23:00:19 +08:00
parent 3a852fd1ab
commit 9be6c4caa3
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -69,21 +69,21 @@ func NewSearch() *Search {
return &Search{
Document: true,
Heading: true,
List: true,
ListItem: true,
List: false,
ListItem: false,
CodeBlock: true,
MathBlock: true,
Table: true,
Blockquote: true,
SuperBlock: true,
Blockquote: false,
SuperBlock: false,
Paragraph: true,
HTMLBlock: true,
EmbedBlock: false,
DatabaseBlock: true,
AudioBlock: true,
VideoBlock: true,
IFrameBlock: true,
WidgetBlock: true,
AudioBlock: false,
VideoBlock: false,
IFrameBlock: false,
WidgetBlock: false,
Limit: 64,
CaseSensitive: false,