Class: BootstrapEmail::Converter::SupportUrlTokens
- Defined in:
- lib/bootstrap-email/converters/support_url_tokens.rb
Constant Summary collapse
- OPEN_BRACKETS =
CGI.escape('{{').freeze
- CLOSE_BRACKETS =
CGI.escape('}}').freeze
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from BootstrapEmail::Converter::Base
Class Method Details
.replace(html) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/bootstrap-email/converters/support_url_tokens.rb', line 9 def self.replace(html) regex = /((href|src)=("|'))(.*?((#{Regexp.quote(OPEN_BRACKETS)}).*?(#{Regexp.quote(CLOSE_BRACKETS)})).*?)("|')/ return unless regex.match?(html) inner_regex = /((#{Regexp.quote(OPEN_BRACKETS)}).*?(#{Regexp.quote(CLOSE_BRACKETS)}))/ html.gsub!(regex) do |_match| start_text = Regexp.last_match(1) middle_text = Regexp.last_match(4) end_text = Regexp.last_match(8) middle_text.gsub!(inner_regex) do |match| CGI.unescape(match) end "#{start_text}#{middle_text}#{end_text}" end end |