🎨 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{ return &Search{
Document: true, Document: true,
Heading: true, Heading: true,
List: true, List: false,
ListItem: true, ListItem: false,
CodeBlock: true, CodeBlock: true,
MathBlock: true, MathBlock: true,
Table: true, Table: true,
Blockquote: true, Blockquote: false,
SuperBlock: true, SuperBlock: false,
Paragraph: true, Paragraph: true,
HTMLBlock: true, HTMLBlock: true,
EmbedBlock: false, EmbedBlock: false,
DatabaseBlock: true, DatabaseBlock: true,
AudioBlock: true, AudioBlock: false,
VideoBlock: true, VideoBlock: false,
IFrameBlock: true, IFrameBlock: false,
WidgetBlock: true, WidgetBlock: false,
Limit: 64, Limit: 64,
CaseSensitive: false, CaseSensitive: false,