Hi, I'm working on an educational game with links to further readings. I'm using [url] tags in RichTextLabels, and using the following code:
func _on_Text_meta_clicked(meta):
OS.shell_open(meta)
This code works when running on Desktop, but not when it's running in browser. When it runs in browser, clicking the link brings me to this page: 
It seems that the OS.shell_open() command doesn't open the link *as a link*, and instead tries to open it in a different format, but I'm not sure what exactly is going on or how to fix it. Would greatly appreciate any help. Thanks!