struct PostVideo: HtmlProducer { let videos: [FileResource] func populate(_ result: inout String) { result += "" result += "Video not supported." for video in videos { result += "" } result += "" } }