I am using the XML editor Pathology for Mac. It is based on Panthro, an open-source implementation of XPath 3.0 in Objective-C/Cocoa.
I want to make a query over the file "Bookstore.xml" referencing to other XML file ("Bookstore2.xml"):
doc("Bookstore.xml")//Magazine[Title = doc("Bookstore2.xml")//Book/Title]
But the program says "Call to unknown function: doc()". How do I refer to other XML files? What am I missing?
BTW, I checked other answers like this one. But I did not get anything clear.
Many thx.