Found this on the Setting page (Safari):
Notice how the HTML for creating a link is being displayed, rather than providing a clickable link for “similar homes”. This is happening because the actual code uses <
and >
instead of <
and >
in the page code.
This is, no doubt, the result of a piece of code that is sanitizing text from a file or database, before being inserted in a page. This is, generally, a good security measure, but clearly accommodations need to be made where HTML is intended to get through, or, even better, a special kind of format should be allowed in the stored text that, upon transformation and filtering will produce valid HTML for the link, but still strip unwanted HTML.