NetNewsWire/Frameworks/Account/FeedProvider/Twitter/TwitterHashtag.swift

29 lines
536 B
Swift
Raw Normal View History

2020-04-18 19:03:16 +02:00
//
// TwitterHashtag.swift
// Account
//
// Created by Maurice Parker on 4/18/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
2020-04-20 02:19:39 +02:00
struct TwitterHashtag: Codable, TwitterEntity {
2020-04-18 19:03:16 +02:00
let text: String?
let indices: [Int]?
enum CodingKeys: String, CodingKey {
case text = "text"
case indices = "indices"
}
2020-04-20 02:19:39 +02:00
func renderAsHTML() -> String {
var html = String()
if let text = text {
html += "<a href=\"https://twitter.com/search?q=%23\(text)\">#\(text)</a>"
}
return html
2020-04-20 02:19:39 +02:00
}
2020-04-18 19:03:16 +02:00
}