diff --git a/doc/main.html b/doc/main.html
index f8889e0..ee2ff31 100644
--- a/doc/main.html
+++ b/doc/main.html
@@ -36,7 +36,7 @@
@@ -2369,11 +2369,11 @@
Sample Workflow
- ISO/IEC Directives, Part 2, Principles and rules for the structure and drafting
- of ISO and IEC documents (Ninth edition, 2021).
+ of ISO and IEC documents (Ninth edition, 2021)
https://www.iso.org/sites/directives/current/part2/index.xhtml
- - SMPTE AG 02, Document Naming and Packaging.
+
- SMPTE AG 02, Document Naming and Packaging
https://doc.smpte-doc.org/ag-02/main/
- - SMPTE AG 16, Standards Style Guide.
+
- SMPTE AG 16, Standards Style Guide
https://doc.smpte-doc.org/ag-16/main/
- SMPTE GitHub Operating Manual
https://github.com/SMPTE/github-operating-manual
diff --git a/smpte.js b/smpte.js
index e22e697..cf638ac 100644
--- a/smpte.js
+++ b/smpte.js
@@ -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);
}
}
@@ -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);
}
}