mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 20:32:56 +00:00
Fix HTML entities being encoded as hashtag links…
This commit is contained in:
parent
3407ae8683
commit
86d4461948
|
@ -314,7 +314,7 @@ class Formatter
|
|||
gaps = []
|
||||
total_offset = 0
|
||||
|
||||
escaped = html.gsub(/<[^>]*>/) do |match|
|
||||
escaped = html.gsub(/<[^>]*>|&#[0-9]+;/) do |match|
|
||||
total_offset += match.length - 1
|
||||
end_offset = Regexp.last_match.end(0)
|
||||
gaps << [end_offset - total_offset, total_offset]
|
||||
|
|
Loading…
Reference in a new issue