Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular creating unwanted links

I am using angular 4, with angular cli. With the default generated config files. The framework is generating unwanted anchor tags. I am trying to show this as plain text. This line inside my template.html:

someExampleSite.com

when served in the browser it becomes:

<a class="vglnk" href="http://someExampleSite.com" rel="nofollow">
 <span>someExampleSite</span>
 <span>.</span>
 <span>com</span>
</a>

Is there a way to get around this? I only want to display someExampleSite.com as plain text on the page.

like image 609
user3624390 Avatar asked Jan 29 '23 14:01

user3624390


1 Answers

The problem was being caused by disqus.

I unchecked both of the boxes in: https://mysite.disqus.com/admin/settings/advanced/

like image 73
user3624390 Avatar answered Feb 03 '23 07:02

user3624390