Remove figure tags from images since they were unneeded

This commit is contained in:
Maurice Parker 2020-05-06 13:59:09 -05:00
parent 366d24711a
commit a4560b6f99

View File

@ -70,7 +70,7 @@ struct RedditLinkData: Codable {
guard let url = url else { return nil } guard let url = url else { return nil }
if url.hasSuffix(".gif") { if url.hasSuffix(".gif") {
return "<figure><img src=\"\(url)\"></figure>" return "<img src=\"\(url)\">"
} }
if isVideo ?? false, let videoURL = media?.video?.fallbackURL { if isVideo ?? false, let videoURL = media?.video?.fallbackURL {
@ -103,11 +103,11 @@ struct RedditLinkData: Codable {
} }
if let imageSource = preview?.images?.first?.source, let imageURL = imageSource.url { if let imageSource = preview?.images?.first?.source, let imageURL = imageSource.url {
var html = "<figure><a href=\"\(url)\"><img src=\"\(imageURL)\" " var html = "<a href=\"\(url)\"><img src=\"\(imageURL)\" "
if let width = imageSource.width, let height = imageSource.height { if let width = imageSource.width, let height = imageSource.height {
html += "width=\"\(width)\" height=\"\(height)\" " html += "width=\"\(width)\" height=\"\(height)\" "
} }
html += "></a></figure>" html += "></a>"
html += linkOutURL(url) html += linkOutURL(url)
return html return html
} }