Mark allowedTags private and remove commented-out ruby tags

This commit is contained in:
Nate Weaver 2020-05-01 17:25:35 -05:00
parent 5ac69a411e
commit 9f792639d6
1 changed files with 1 additions and 1 deletions

View File

@ -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 }