Skip to content

Commit

Permalink
Escape table entries correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachnid committed Mar 20, 2018
1 parent b5f7831 commit 806ccbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1>{{status}}</h1>
</thead>
{% for page in pages %}
{% if page.Status == status %}
<tr><td><a href="{{page.url|relative_url}}">{{page.EIP}}</a></td><td>{{page.Title}}</td><td>{{page.Author}}</td><td>{{page.Layer}}</td></tr>
<tr><td><a href="{{page.url|relative_url}}">{{page.EIP}}</a></td><td>{{page.Title|xml_escape}}</td><td>{{page.Author|xml_escape}}</td><td>{{page.Layer|xml_escape}}</td></tr>
{% endif %}
{% endfor %}
</table>
Expand Down

0 comments on commit 806ccbd

Please sign in to comment.