struct ContentPageVideo: HtmlProducer { let filePath: String let videoType: String let options: [VideoOption] func populate(_ result: inout String) { result += "Video not supported." result += "" result += "" } private var optionString: String { options.map { " " + $0.rawValue }.joined() } }