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)