I found the solution to my problem.
http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a0-5bf1c839123792503fa-8000.html
If the page ever moves, I've copied it and added a few notes for me below:
By default, Solr highlights searched terms in the summary content as described in the following snippet:
<cfsearch
collection="syn1"
criteria="Services solr"
name="results"
status="r"
suggestions="always"
contextPassages="1">
To highlight contents in the entire document, modify the solrconfig.xml and schema.xml files. These files are available in the following locations:
<Collection Directory>/conf: Modify files in this location to apply the changes only to a particular collection.
<Solr Home>/multicore/template/conf: Modify files in this location to apply the changes to all future Solr collections.
- Stop Solr service.
2. Replace the following section in the solrconfig.xml (LINE 361)
<requestHandler name="standard" class="solr.StandardRequestHandler" default="true">
<!-- default values for query parameters -->
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="hl.fl">summary title </str>
<!-- omp = Only More Popular -->
<str name="spellcheck.onlyMorePopular">false</str>
<!-- exr = Extended Results -->
<str name="spellcheck.extendedResults">false</str>
<!-- The number of suggestions to return -->
<str name="spellcheck.count">1</str>
</lst>
<arr name="last-components">
<str>spellcheck</str>
</arr>
</requestHandler>
with
<requestHandler name="standard" class="solr.StandardRequestHandler" default="true">
<!-- default values for query parameters -->
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="hl.fl">contents title </str>
<!-- omp = Only More Popular -->
<str name="spellcheck.onlyMorePopular">false</str>
<!-- exr = Extended Results -->
<str name="spellcheck.extendedResults">false</str>
<!-- The number of suggestions to return -->
<str name="spellcheck.count">1</str>
</lst>
<arr name="last-components">
<str>spellcheck</str>
</arr>
</requestHandler>
3. Replace the following section in the schema.xml (LINE 456)
<field name="contents" type="text" indexed="true" stored="false" required="false" multiValued="true" omitNorms="true"/>
with
<field name="contents" type="text" indexed="true" stored="true" required="false" multiValued="true" omitNorms="true"/>
4. Restart Solr.
5. Reindex the collection.
Note: The modifications to solrconfig.xml and schema.xml will increase the index size.
In my search, I increased the contextbytes and contextpassages.
<cfsearch name="qSearch"
collection="index_name"
status = "info"
suggestions="always"
ContextBytes="30000"
ContextPassages= "1000"
CRITERIA="#TRIM(search)#"
>