I am currently doing a search on my website with the following character :
q=increase%0B%0B
These two characters imply an error, and my search doesn't return anything. If I only search for increase, without the two lasts, the search works. Is it a way to make it html safe by removing all the unsafe characters as those ones ?
Thanks !
'increase%0B%0B'.replace('%0B', '')=>'increase'(captain obvious)import rere.sub('%..', '', 'increase%0B%0B')=>'increase'