html:
<a href="<# jsteLink #>">Link</a>
<a href="<% aspLink %>">Link</a>
<a href="<?php echo $phpLink ?>">Link</a>
<a href="<?= $phpLink ?>">Link</a>
using
tidy -q --show-body-only true test.html
gives me always (handlebars templates using { } seem to work) an error like:
Warning: <a> escaping malformed URI reference
So is it possible to stop checking for malformed attributes if they contain any pseudo elements? Is there any workaround that anyone is using in their routine?
html:
using
gives me always (handlebars templates using
{ }seem to work) an error like:So is it possible to stop checking for malformed attributes if they contain any pseudo elements? Is there any workaround that anyone is using in their routine?