Searching for XML and HTML tags, attributes, and their values
The simplest template that is used to search for a tag is:
<$a$/>
By placing constraints on the variable $a$, you can specify which tags you want to find.
For example, if you specify the text/regexp constraint app.+,
you’ll find the tags whose names start with app.
A more versatile template for searching in XML and HTML is:
<$tag$ $attribute$="$value$"/>
By using this template with properly specified search settings and constraints,
you can find practically anything that may occur in XML or HTML. For example, if you specify the
text/regexp constraint width for the variable $attribute$, you’ll find all the
tags that have the width attribute.