I have a school project, for which I want to develop a web application similar (but simplified) to reddit. reddit My problem is that I can’t seem to be able to post references/hyperlinks that point outside of localhost:9000/ . All tags in the mold of the below example are changed, thus to point to localhost:9000/www.google.ro .
<!-- language: html -->
<a href="www.google.ro"> Go to google </a>
All hyperlinks are made relative. How can I go around this? Basically, block the interpreter from modifying my hyperlink?
Sorry for the poor formatting. It’s my first post here :). Thank you.
Write
<a href="http://www.google.ro">Go to google</a>