How do I ignore special characters in the glossary such: ",',(

I have searched the documentation, and the issue cue, but unfortunately can't find anything on it.

Comments

merlinofchaos’s picture

Status: Active » Closed (won't fix)

There's no easy way to do that, as it does direct string comparisons via the database. The only thing I can think to do this would be to make an alternative field that strips out special characters and use that for the glossary argument.

Anonymous’s picture

Thank you for answering. Then I know I wasn't overlooking a standard feature.

It is not critical, when I have time I'll look into it what I can do to implement it.

Btw: Am very impressed by your plugin. Nice job. :-)

Ajtis.pl’s picture

$("a:contains('Å')").each(function(){
$(this).text('A');
});