Skip to content

Instantly share code, notes, and snippets.

@jkeck
Created March 3, 2014 21:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkeck/9334756 to your computer and use it in GitHub Desktop.
Save jkeck/9334756 to your computer and use it in GitHub Desktop.
configure_blacklight do |config|
config.default_solr_params = {
:qt => 'search',
:qf => 'id content url title anchor author',
:rows => 10,
:"hl.fl" => "content",
:"hl.simple.pre" => '<span class="label label-info">',
:"hl.simple.post" => "</span>",
:hl => true
}
config.default_document_solr_params = {
:"hl.fl" => "content",
:"hl.simple.pre" => '<span class="label label-info">',
:"hl.simple.post" => "</span>",
:hl => true
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment