In the following code is there anyway for python to tell what the 'word' in the middle of the href tags was when receiving the anchorClicked signal?
word = '<a href>' + '<span style="background-color:#C0C0C0">' + word + '</span>' +'</a>'
I tried with the sender() method, but the sender is QTextBrowser, not the string, so that didn't help.