Highlighting text beween custom tags
- by Rachel
In a xhtml, i want to highlight the text between two self closing tags s1 and s2 whose attribute value is the same. Eg. <s1 ind="1"/> and <s2 ind="1" />
Eg.
<html>
<body>
<a>
<b>Some <s1 ind="1"/> text</b>
<c>data <s2 ind="1"/>here</c>
</a>
</body>
…