Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<section id="sec-normative-references">
<ul>
<li>
<cite id="bib-HTML-5">HTML Standard</cite>, Living Standard.
<cite id="bib-HTML-5">HTML Standard</cite>, Living Standard
<a>https://html.spec.whatwg.org/multipage/</a></li>
</ul>
</section>
Expand Down Expand Up @@ -2369,11 +2369,11 @@ <h3>Sample Workflow </h3>
<section id="sec-bibliography">
<ul>
<li><cite id="bib-iso-directives-part2">ISO/IEC Directives, Part 2</cite>, Principles and rules for the structure and drafting
of ISO and IEC documents (Ninth edition, 2021).
of ISO and IEC documents (Ninth edition, 2021)
<a>https://www.iso.org/sites/directives/current/part2/index.xhtml</a></li>
<li><cite id="bib-smpte-ag-02">SMPTE AG 02</cite>, Document Naming and Packaging.
<li><cite id="bib-smpte-ag-02">SMPTE AG 02</cite>, Document Naming and Packaging
<a>https://doc.smpte-doc.org/ag-02/main/</a></li>
<li><cite id="bib-smpte-ag-16">SMPTE AG 16</cite>, Standards Style Guide.
<li><cite id="bib-smpte-ag-16">SMPTE AG 16</cite>, Standards Style Guide
<a>https://doc.smpte-doc.org/ag-16/main/</a></li>
<li><cite id="bib-smpte-gh-om">SMPTE GitHub Operating Manual</cite>
<a>https://github.com/SMPTE/github-operating-manual</a></li>
Expand Down
2 changes: 2 additions & 0 deletions smpte.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ function insertNormativeReferences(docMetadata) {
/* style URLs */

for(const u of sec.querySelectorAll("ul a")) {
u.parentNode.insertBefore(document.createElement("br"), u);
u.parentNode.insertBefore(document.createTextNode("url:\u00a0"), u);
}
}
Expand Down Expand Up @@ -544,6 +545,7 @@ function insertBibliography(docMetadata) {
/* style links */

for(const u of sec.querySelectorAll("ul a")) {
u.parentNode.insertBefore(document.createElement("br"), u);
u.parentNode.insertBefore(document.createTextNode("url:\u00a0"), u);
}
}
Expand Down