Mark allowedTags private and remove commented-out ruby tags
This commit is contained in:
parent
5ac69a411e
commit
9f792639d6
|
@ -94,7 +94,7 @@ public extension Array where Element == Article {
|
|||
}
|
||||
|
||||
public extension Article {
|
||||
static let allowedTags: Set = ["b", "bdi", "bdo", "cite", "code", "del", "dfn", "em", "i", "ins", "kbd", "mark", "q", /* "rb", "rp", "rt", "rtc", "ruby", */ "s", "samp", "small", "strong", "sub", "sup", "time", "u", "var"]
|
||||
private static let allowedTags: Set = ["b", "bdi", "bdo", "cite", "code", "del", "dfn", "em", "i", "ins", "kbd", "mark", "q", "s", "samp", "small", "strong", "sub", "sup", "u", "var"]
|
||||
|
||||
func sanitizedTitle(forHTML: Bool = true) -> String? {
|
||||
guard let title = title else { return nil }
|
||||
|
|
Loading…
Reference in New Issue