JSON Search: Disable highlighting

(from github.com/defensivedepth)
FESS 12.01 on Windows Server 2012 R2.

I checked the docs, but I don’t see a way to disable the highlight params on JSON search?

I don’t want the <strong><\/strong> tags included in the JSON results.

Thanks,

(from github.com/marevol)
Add the following property tags in app/WEB-INF/classes/app.xml:

...
        <component name="viewHelper" class="org.codelibs.fess.helper.ViewHelper">
                <property name="highlightTagPre">""</property>
                <property name="highlightTagPost">""</property>
                <postConstruct name="addFacetQueryView">
...

(from github.com/defensivedepth)
Great, thanks!