This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
IRProject/solr_config/conf/velocity/did_you_mean.vm

12 lines
400 B
Plaintext

#**
* Hyperlinked spelling suggestions in results list
*#
#set($collations = $response.response.spellcheck.collations.getAll("collation"))
#if($collations && $collations.size() > 0)
Did you mean
#foreach($collation in $collations)
<a href="#{url_for_home}#{lensNoQ}&q=$esc.url($collation.collationQuery)">$esc.html($collation.collationQuery)</a> ($collation.hits)?
#end
#end