I have the following text field:

    <fieldType name="text" class="solr.TextField" omitNorms="false">
      <analyzer>
        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
        <filter class="solr.WordDelimiterFilterFactory"
                generateWordParts="1"
                generateNumberParts="1"
                catenateWords="1"
                catenateNumber="1"
                catenateAll="1"
                splitOnCaseChange="1"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter
class="com.lucidimagination.solrworks.analysis.LucidKStemFilterFactory"/>
        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
      </analyzer>
    </fieldType>
    ...
   <field name="title" stored="true" termVectors="true" type="text"
multiValued="true" indexed="true"/>


When I search for women's, womens or women I correctly get back all the
results I want. However when I use the highlighting feature it only
highlights women in the women's cases. How can I highlight the whole word
women's including the apostrophe?

Thanks
-- 
View this message in context: 
http://n3.nabble.com/Highlighting-apostrophe-tp731155p731155.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to