Skip to content

Commit 5717a50

Browse files
committed
Merge pull request #1754 from aarongustafson/master
Fixed bug causing non-removal of bogus wrapper
2 parents d684a65 + d23e8e8 commit 5717a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/raw.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def self.safe_wrap(input)
88
end
99
# This must be applied after the
1010
def self.unwrap(input)
11-
input.gsub /<div class='bogus-wrapper'><notextile>(.+?)<\/notextile><\/div>/m do
11+
input.gsub /<div class=['"]bogus-wrapper['"]><notextile>(.+?)<\/notextile><\/div>/m do
1212
$1
1313
end
1414
end

0 commit comments

Comments
 (0)