XML to links in HTML
I'm reading in some XML generated by Access. A node looks something like this:
<desc>
<div>Here is <a href='https://example.com'>a useful link</a> for you.</div>
</desc>
And when i put that into my textfield I end up with:
Here is <a href='https://example.com'>a useful link</a> for you.
I would like to have the links actually be hot links that show up blue and clickable. I'm sure it is some simple thing that I'm just missing.