Comment 3 for bug 243692

Revision history for this message
Cesare Tirabassi (norsetto) wrote : Re: web pages with ~dot not underlined correrctly

The workaround solution is simply to add the tilde (~) character in the regex which is used for url parsing:

1. Open the file /usr/share/source-highlight/url.lang with su rights
2. Add a ~in the vardef URLPART = '[[:word:]\./\-_]+' line, like:

vardef URLPART = '[[:word:]\./\-_~]+'

3. save and exit

Now the url is parsed correctly.
Before fixing this (and possibly updating the package) could you pls. let me know if you find any regression after this change?