mirror of
https://github.com/discourse/discourse.git
synced 2025-08-21 19:11:18 +08:00
Preserve spoiler tags in post excerpts.
This commit is contained in:
parent
ac8203b601
commit
e781a758ad
2 changed files with 15 additions and 0 deletions
|
@ -49,8 +49,16 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
|
|||
include_tag(name, attributes)
|
||||
@in_a = true
|
||||
end
|
||||
|
||||
when "aside"
|
||||
@in_quote = true
|
||||
|
||||
when "div", "span"
|
||||
# Preserve spoilers
|
||||
if attributes.any? {|x| x == ["class", "spoiler"] }
|
||||
include_tag("span", attributes)
|
||||
@in_spoiler = true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -65,6 +73,9 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
|
|||
characters(" ")
|
||||
when "aside"
|
||||
@in_quote = false
|
||||
when "div", "span"
|
||||
characters("</span>", false, false, false) if @in_spoiler
|
||||
@in_spoiler = false
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue