Clickable URL Support?

I would like to include URLs to reference / help pages in Pyblish (tool guide, naming conventions etc)
I want to ask if clickable URLs are currently supported in Pyblish.
If so, is there a best way to do it ?

I saw what looked like sample code for it, but could not get it to work.
As the source file is titled mock.py, it may be a kind of source mock up for proposed future features.

Reference URL:
https://github.com/pyblish/pyblish-lite/blob/286fe9ff9bb80d3e9ae79983dbfba30fd03fecbe/pyblish_lite/mock.py

Reference Code:

class ValidateWithHyperlinks(pyblish.api.Validator):

families = ["A", "B"]

def process(self, instance):
    self.log.info("Processing instance..")

    msg = "To learn about Pyblish, <a href='http://pyblish.com'>"
    msg += "click here</a> (http://pyblish.com)"
    
    self.log.info(msg)

Hi @virtualengineer, this was built into the QML GUI a while back, and shouldn’t be too challenging to include for Lite as well. The example you found is likely for use in QML, I think those mock plug-ins were borrowed from there at some point.

Technically, I think it would be a matter of replacing the QLabel or whichever equivalent is used in Lite at the moment, with another widget capable of taking on clicks and URLs. A PR for this would be most welcome.

Thanks for the info !
Very helpful, as always.
I will look into it.
Thank you very much!