mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
Previously, we only excluded attributes where the value of the attribute itself suggests templating happening. Now we exclude all attributes in documents where _any_ attribute value suggests templating.
10 lines
166 B
HTML
10 lines
166 B
HTML
<html>
|
|
<head><title></title></head>
|
|
<body>
|
|
{% if foo %}
|
|
<a href="{{url}}" id="unique">foo</a>
|
|
{% else %}
|
|
<a href="{{url}}" id="unique">!foo</div>
|
|
{% endif %}
|
|
</body>
|