You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Thanks for a good job! Searching bakend is really what wagtail needs
My question about unidecode function. Why wagtail-whoosh calls it for every field? If I develop multilingual site I create field for every languge and this fields all indexed by Whoosh. And when I searching, backend convert query words from unicode to Ascii. It is not what I want!
try:
# Only use the GPLv2 licensed unidecode if it's installed.
from unidecode import unidecode
except ImportError:
def unidecode(value):
return value
The text was updated successfully, but these errors were encountered:
Hi! Thanks for a good job! Searching bakend is really what wagtail needs
My question about unidecode function. Why wagtail-whoosh calls it for every field? If I develop multilingual site I create field for every languge and this fields all indexed by Whoosh. And when I searching, backend convert query words from unicode to Ascii. It is not what I want!
The text was updated successfully, but these errors were encountered: