## See https:#set($solrSpecialChars = ['+', '-', '&&', '||', '!', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '/', '\'])
#set($escapedSolrSpecialChars = ['\+', '\-', '\&&', '\||', '\!', '\(', '\)', '\{', '\}', '\[', '\]', '\^', '\"', '\~', '\*', '\?', '\:', '\/', '\\'])
#macro(escapeSolr $v)
$stringtool.replaceEach($v, $solrSpecialChars, $escapedSolrSpecialChars)##
#end