Insert more line breaks

This commit is contained in:
Christoph Hagen 2025-01-27 07:56:07 +01:00
parent 5937369223
commit 09b1f48aea
5 changed files with 17 additions and 11 deletions

View File

@ -68,7 +68,7 @@ final class FeedPageGenerator {
header: pageHeader,
additionalFooter: footer) { content in
if let pageTitle {
content += "<h1 class='separated-headline'>\(pageTitle)</h1>"
content += "<h1 class='separated-headline'>\(pageTitle)</h1>\n"
}
for post in posts {
content += FeedEntry(data: post).content

View File

@ -122,7 +122,13 @@ struct AudioPlayer: HtmlProducer {
var content: String {
"""
<div class="playlist-song amplitude-song-container amplitude-play-pause amplitude-paused" data-amplitude-song-index="\(index)"><img src="\(image)"><div class="playlist-song-meta"><span class="playlist-song-name">\(name)</span><span class="playlist-song-artist">\(album) &bull; \(artist)</span></div></div>
<div class="playlist-song amplitude-song-container amplitude-play-pause amplitude-paused" data-amplitude-song-index="\(index)">
<img src="\(image)">
<div class="playlist-song-meta">
<span class="playlist-song-name">\(name)</span>
<span class="playlist-song-artist">\(album) &bull; \(artist)</span>
</div>
</div>
"""
}
}

View File

@ -18,14 +18,14 @@ struct AudioPlayerScript: HtmlProducer {
}
func populate(_ result: inout String) {
result += "<script>window.onload = () => { "
result += "<script>\nwindow.onload = () => { "
result += "Amplitude.init({ songs: "
let songData = try! JSONEncoder().encode(items)
result += String(data: songData, encoding: .utf8)!
result += "}); }; " // Close Amplitude.init and window.onload
result += "}); };\n" // Close Amplitude.init and window.onload
result += "function playEntry(index) { Amplitude.playSongAtIndex(index) };"
result += animatePlaylist
result += "</script>"
result += "\n</script>"
}
private var animatePlaylist: String {

View File

@ -1,6 +1,6 @@
import Foundation
struct FeedEntry {
struct FeedEntry: HtmlProducer {
private let data: FeedEntryData
@ -12,8 +12,8 @@ struct FeedEntry {
data.link != nil ? " linked-card" : ""
}
var content: String {
var result = "<article><div class='card\(cardLinkClassText)'>"
func populate(_ result: inout String) {
result += "<article><div class='card\(cardLinkClassText)'>"
switch data.media {
case .images(let images):
ImageGallery(id: data.entryId, images: images).populate(&result)
@ -41,7 +41,6 @@ struct FeedEntry {
if let url = data.link {
result += "<div class='link-center'><div class='link'>\(url.text)</div></div>"
}
result += "</div></div></article>" // Closes card-content, card, article
return result
result += "</div></div></article>\n" // Closes card-content, card, article
}
}

View File

@ -19,8 +19,9 @@ struct GenericPage {
var content: String {
var result = ""
header.populate(&result) // Opens <html><body><main>
result += "\n"
insertedContent(&result)
result += "</main>" // Close <main>
result += "</main>\n" // Close <main>
result += additionalFooter
result += "</body></html>" // Close <body><html>
return result