Quote Originally Posted by wysota View Post
I think you must have done something wrong. Qt Assistant is based around QTextBrowser and it uses anchors for method and property names and that seems to work fine...
Yes on ready document read only its work ... My problem i have 3 case on QTextBrowser
View modus / Edit modus Wysiwyg / Source edit modus /

BTW. The container doesn't work for you, because it iterates direct children of the element which it was given and in the code you pasted "a" is a child of "tag", so you'd have to do:
Qt Code:
  1. foreach(QDomElement elem, DomElementContainer(doc, "tag"))
  2. foreach(QDomElement subelem, DomElementContainer(elem, "a"))
  3. links++;
To copy to clipboard, switch view to plain text mode 
Is here a way to make this container Xpath similar?
like:
/body/p[0]/a/span