mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-20 16:40:13 +01:00
🎨 HTML tag search escaping issue https://github.com/siyuan-note/siyuan/issues/13354
This commit is contained in:
parent
b0b88d3664
commit
7e3ce7b6d9
2 changed files with 2 additions and 1 deletions
|
|
@ -798,7 +798,6 @@ func GetDoc(startID, endID, id string, index int, query string, queryTypes map[s
|
||||||
typeFilter := buildTypeFilter(queryTypes)
|
typeFilter := buildTypeFilter(queryTypes)
|
||||||
switch queryMethod {
|
switch queryMethod {
|
||||||
case 0:
|
case 0:
|
||||||
query = strings.ReplaceAll(query, "'", "''") // 不需要转义双引号,因为条件都是通过单引号包裹的,只需要转义单引号即可
|
|
||||||
keywords = strings.Split(query, " ")
|
keywords = strings.Split(query, " ")
|
||||||
case 1:
|
case 1:
|
||||||
keywords = highlightByFTS(query, typeFilter, rootID)
|
keywords = highlightByFTS(query, typeFilter, rootID)
|
||||||
|
|
|
||||||
|
|
@ -1506,6 +1506,7 @@ func fullTextSearchByLikeWithRoot(query, boxFilter, pathFilter, typeFilter, igno
|
||||||
|
|
||||||
keywords = gulu.Str.RemoveDuplicatedElem(keywords)
|
keywords = gulu.Str.RemoveDuplicatedElem(keywords)
|
||||||
terms := strings.Join(keywords, search.TermSep)
|
terms := strings.Join(keywords, search.TermSep)
|
||||||
|
terms = strings.ReplaceAll(terms, "''", "'")
|
||||||
ret = fromSQLBlocks(&resultBlocks, terms, beforeLen)
|
ret = fromSQLBlocks(&resultBlocks, terms, beforeLen)
|
||||||
if 1 > len(ret) {
|
if 1 > len(ret) {
|
||||||
ret = []*Block{}
|
ret = []*Block{}
|
||||||
|
|
@ -1514,6 +1515,7 @@ func fullTextSearchByLikeWithRoot(query, boxFilter, pathFilter, typeFilter, igno
|
||||||
}
|
}
|
||||||
|
|
||||||
func highlightByFTS(query, typeFilter, id string) (ret []string) {
|
func highlightByFTS(query, typeFilter, id string) (ret []string) {
|
||||||
|
query = stringQuery(query)
|
||||||
const limit = 256
|
const limit = 256
|
||||||
table := "blocks_fts"
|
table := "blocks_fts"
|
||||||
if !Conf.Search.CaseSensitive {
|
if !Conf.Search.CaseSensitive {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue