struct SimpleImage: HtmlProducer { let imagePath: String let altText: String func populate(_ result: inout String) { result += "
" result += "\(altText)" result += "
" } }