Revert "escape title HTML in web view. Issue #722"
This reverts commit a087410177
.
This commit is contained in:
parent
d68cbac51e
commit
e4ee311227
|
@ -86,11 +86,10 @@ private extension ArticleRenderer {
|
||||||
}
|
}
|
||||||
|
|
||||||
func titleOrTitleLink() -> String {
|
func titleOrTitleLink() -> String {
|
||||||
let escapedTitle = title.escapeHTML()
|
|
||||||
if let link = article?.preferredLink {
|
if let link = article?.preferredLink {
|
||||||
return escapedTitle.htmlByAddingLink(link)
|
return title.htmlByAddingLink(link)
|
||||||
}
|
}
|
||||||
return escapedTitle
|
return title
|
||||||
}
|
}
|
||||||
|
|
||||||
func substitutions() -> [String: String] {
|
func substitutions() -> [String: String] {
|
||||||
|
|
Loading…
Reference in New Issue