We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2cb62 commit d2422a3Copy full SHA for d2422a3
src/cls/iKnowDoc/Search/Domain.cls
@@ -20,10 +20,15 @@ ClassMethod GetSimilar(SearchString) As %Status
20
for i=1:1:10 {
21
set оrd = $order(Result(i),1,Data)
22
if $li(Result(i),4)>2 {
23
- set string =$li(Data,2)
+ if $FIND($li(Data,2),"--")=0 {
24
+ set string =$li(Data,2)
25
+ } else {
26
+ set string =" "
27
+ }
28
} else {
29
set string =" "
30
}
31
+ set string = ##class(iKnowDoc.Search.Parser).ParseHints(string)
32
set tJSON = { "value":($ZCONVERT(string,"I","HTML")) }
33
do ResultJSON.entities.%Push(tJSON)
34
0 commit comments