View Single Post
Old 08-02-2017, 10:39 AM   #6
canopus56
Junior Member
canopus56 began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Jul 2017
Device: Andriod
The work around that I came up with was to use the following style to have no text decoration on a Sigil index marker, e.g.

/* Comment out to restore index entry hyperlinks */
/* This works in dayvision mode but not in night vision. In night vision, the text stays black and thus is invisible against the black night background. So, encapsulate the index_marker link around a forced space character   and leave the usually wrapped text blank.*/
a.sigil_index_marker{color: black; a:link{color:black}; text-decoration: none;}

As a last production step, using regex, encapsulate the sigil index marker around a space and leave the text as ordinary unmarked text, e.g. -

Change this:

<a class="sigil_index_marker" title="Common whitetail dragonfly" id="sigil_index_id_1">Common whitetail dragonflies</a>&nbsp;

to this:

<a class="sigil_index_marker" title="Common whitetail dragonfly" id="sigil_index_id_1">&nbsp;</a>Common whitetail dragonflies

With this kludge, you get Sigil index markup and index cross-referencing but without any underlining of the index marked text. This works both in daytime and night vision modes. - Kurt

- Kurt
canopus56 is offline   Reply With Quote