The following code will cause the link to not navigate to the desired page:
<div zf-close="anything">
<a href="www.google.com" target="_blank">google</a>
</div>
As a workaround, you can use:
<div zf-close="anything">
<a ng-click="navigate()">google</a>
</div>
Where navigate will programmatically change the url. This solution will not work for me however since the html used inside the div is generated via markdown.
The following code will cause the link to not navigate to the desired page:
As a workaround, you can use:
Where
navigatewill programmatically change the url. This solution will not work for me however since the html used inside thedivis generated via markdown.