Skip to content

Commit 9523353

Browse files
committed
Fixed some instances of invalid html.
- Legacy-Id: 17758
1 parent 01027b9 commit 9523353

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

ietf/templates/api/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ <h3 id="simplified-documents" class="anchor-target">Simplified documents API</h3
178178
document attributes are necessary for an application is
179179
available for all documents at the relative url <code>doc.json</code>, e.g.,
180180
<code>{% url 'ietf.doc.views_doc.document_json' name='draft-ietf-poised95-std-proc-3' %}</code>
181-
<a href="{% url 'ietf.doc.views_doc.document_json' name='draft-ietf-poised95-std-proc-3' %}"><span class="fa fa-external-link"/></a>.
181+
<a href="{% url 'ietf.doc.views_doc.document_json' name='draft-ietf-poised95-std-proc-3' %}"><span class="fa fa-external-link"></span></a>.
182182
You can also specify an RFC: <code>{% url 'ietf.doc.views_doc.document_json' name='rfc2026' %}</code>
183-
<a href="{% url 'ietf.doc.views_doc.document_json' name='rfc2026' %}"><span class="fa fa-external-link"/></a>.
183+
<a href="{% url 'ietf.doc.views_doc.document_json' name='rfc2026' %}"><span class="fa fa-external-link"></span></a>.
184184
No API key is needed to access this.
185185

186186
</p>
@@ -327,6 +327,7 @@ <h3 id="signing-keys" class="anchor-target">Signing Keys</h3>
327327
To verify a signature and get the verified data using Python with the
328328
<a href="https://jwcrypto.readthedocs.io/en/latest/">jwcrypto</a> module,
329329
you could do:
330+
</p>
330331
<pre>
331332
from jwcrypto import jwk, jws
332333

@@ -339,7 +340,6 @@ <h3 id="signing-keys" class="anchor-target">Signing Keys</h3>
339340
jwstoken.verify(key)
340341
payload = jwstoken.payload
341342
</pre>
342-
</p>
343343
</div>
344344

345345
</div>

ietf/templates/nomcom/announcements.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h2 class="anchor-target" id="historical">Historical information</h2>
6363
<h2 class="anchor-target" id="references">References</h2>
6464
<ul>
6565
<li><a href="https://datatracker.ietf.org/doc/rfc2026/">The Internet Standards Process (RFC 2026)</a></li>
66-
<li><a href="https://datatracker.ietf.org/doc/rfc8713/">IAB, IESG, IETF Trust, and IETF LLC Selection, Confirmation, and Recall Process: Operation of the IETF Nominating and Recall Committees (RFC 8713) (Also BCP10)
66+
<li><a href="https://datatracker.ietf.org/doc/rfc8713/">IAB, IESG, IETF Trust, and IETF LLC Selection, Confirmation, and Recall Process: Operation of the IETF Nominating and Recall Committees (RFC 8713) (Also BCP10)</a></li>
6767
<li><a href="https://datatracker.ietf.org/doc/rfc3797/">Publicly Verifiable Nominations Committee (NomCom) Random Selection (RFC 3797)</a></li>
6868
</ul>
6969

ietf/templates/stats/document_stats_author_affiliation.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ <h3>Affiliation Aliases</h3>
8484
{% if alias_data %}
8585
<table class="table table-condensed">
8686
<thead>
87-
<th>Affiliation</th>
88-
<th>Alias</th>
87+
<tr>
88+
<th>Affiliation</th>
89+
<th>Alias</th>
90+
</tr>
8991
</thead>
9092

9193
{% for name, alias in alias_data %}

0 commit comments

Comments
 (0)