So I'm just trying to insert a link after some content but it just displays the literal string. How do I change this?
<p>Blah Blah Blah I'm some content</p>
CSS:
p:after {
content: '- <a href="http://www.stackoverflow.com">Learn More</a>'
}
which produces of course the text:
<!-- language: lang-none -->
Blah Blah Blah I'm some content - <a href="http://www.stackoverflow.com">Learn More</a>
I expect the following output
Blah Blah Blah I'm some content - Learn More