struct ContentBox: HtmlProducer { let title: String let text: String func populate(_ result: inout String) { result += "
" result += "\(title)" result += "

\(text)

" result += "
" } }