Here's a dilemma I'm facing - I have some HTML code on my localhost that looks like this:
<div>
<p>Go to: <a href="www.foobar.com">here</a></p>
</div>
On localhost, the output is "Go to: here" with 'here' appearing as a link, which is what I expect.
However, when I deploy it to a sandbox environment, the rendered output shows up as "Go to:here" without any space between the words.
I've tried minifying the code, but can't seem to identify why this issue is occurring. Could there be something else causing this problem?
I would greatly appreciate any suggestions or help regarding this matter. Thank you!