My XML uses namespaces everywhere. I am not sure if there is any
convenient way to use the Find Element - Advanced tab to do an XPath
search in these documents? If I search for, eg
//p
this fails, but so does attempting to use a namespace prefix
//d:p
or an expanded namespace:
//{http://www.daisy.org/z3986/2005/dtbook/}p
What does work is:
//*[local-name()='p']
but this is rather inconvenient, and less precise.
I know the feature may be used by relatively few people, but
occasionally one really wants to be able to certain types of question --
say, whether a document ever uses an image inside a sidebar -- and a
quick XPath search comes in extremely handy.
Bng