Skip to content

Commit 8b5564e

Browse files
committed
SIKE! fix #141
1 parent 255cec1 commit 8b5564e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Sources/SwiftinitPages/Sections/ProseSection.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,8 @@ extension ProseSection:HTML.OutputStreamableMarkdown
101101

102102
switch self.outlines[reference]
103103
{
104-
case .link:
105-
// No reason this should ever appear here.
106-
return
104+
case .link(https: let url, safe: let safe):
105+
html[.a] { $0.href = "https://\(url)"; $0.rel = safe ? nil : .nofollow } = url
107106

108107
case .text(let text):
109108
html[.code] = text

Sources/SwiftinitRender/Formats/Swiftinit.RenderFormat.Assets.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension Swiftinit.RenderFormat.Assets
2222
/// To reduce cache churn, not all assets are versioned. For example, the fonts and
2323
/// the favicon do not use the version numbers.
2424
@inlinable public static
25-
var version:MajorVersion { .v(18) }
25+
var version:MajorVersion { .v(19) }
2626
}
2727
extension Swiftinit.RenderFormat.Assets
2828
{

0 commit comments

Comments
 (0)