vivo-solr/vivocore/conf/velocity/did_you_mean.vm
2018-09-20 18:29:22 -04:00

11 lines
374 B
Text

#**
* Hyperlinked spelling suggestions in results list
*#
#set($collations = $response.response.spellcheck.collations.getAll("collation"))
#if($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