I'm having some trouble figuring out how to resolve this issue I'm having with URLs.
Within one of my commands, I'm trying to link to outside sites by doing the following:
this.echo('<a href="' + philip.contact[contact[0]] + '">' + contact[i] + '</a>', {raw: true});
Where philip.contact[contact[0]]
is the string "https://medium.com/"
. I get the following URL from the jquery terminal:
http://philipyoo.github.io/[[!;;]https://medium.com/]
Or I tried the following:
this.echo('<a href="www.google.com" target="_blank">' + mylink + '</a>', {raw: true});
And get the following:
http://philipyoo.github.io/https://www.google.com]/
No [[!;;]
in the url.
I saw the following closed issue for formatting multiple param urls, but I don't really follow the conversation. I'm not formatting my URLs in any way, but I get situations where I'll get the [[!;;]
inserted into my URLs.
Any help is much appreciated!