[Answer]-Django Haystack with Whoosh: Ignore characters when indexing/searching

1👍

There’s a few ways you could implement this – basically what you want to do is strip the square brackets in your indexed content, and one way you could do this is to write a method on your model to return the modified content for the field you’re indexing, and then use this in your search template.

👤Greg

Leave a comment