I have a string like "User: %s" and want to format it and replace "%s" with something like <a href="#">John</a>. How should I do it in view files?
P.S. I am using "User: %s".format("John") but browser render I am <a href="#">John</a> instead of "I am John".