🎨 Improve default search type filtering https://github.com/siyuan-note/siyuan/issues/11003
This commit is contained in:
parent
3a852fd1ab
commit
9be6c4caa3
1 changed files with 8 additions and 8 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue