Adds highlighting to the results.
(self, **kwargs)
| 358 | return clone |
| 359 | |
| 360 | def highlight(self, **kwargs): |
| 361 | """Adds highlighting to the results.""" |
| 362 | clone = self._clone() |
| 363 | clone.query.add_highlight(**kwargs) |
| 364 | return clone |
| 365 | |
| 366 | def models(self, *models): |
| 367 | """Accepts an arbitrary number of Model classes to include in the search.""" |