Christoph Hagen c78c359819 Support GIFs
2025-01-05 21:32:25 +01:00

15 lines
305 B
Swift

struct SimpleImage: HtmlProducer {
let imagePath: String
let altText: String
func populate(_ result: inout String) {
result += "<div class='content-image svg-image'>"
result += "<img src='\(imagePath)' loading='lazy' alt='\(altText)'/>"
result += "</div>"
}
}