module ERB::Util

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/active_support/core_ext/string/output_safety.rbs

module ERB::Util
  def html_escape: ((ActionView::OutputBuffer | String) s) -> ActiveSupport::SafeBuffer
  def unwrapped_html_escape: ((ActiveSupport::SafeBuffer | String | ActionView::OutputBuffer) s) -> (ActiveSupport::SafeBuffer | String | ActionView::OutputBuffer)
  def xml_name_escape: ((String | Symbol) name) -> String
end

def html_escape(s)

Experimental RBS support (using type sampling data from the type_fusion project).

def html_escape: ((ActionView::OutputBuffer | String) s) -> ActiveSupport::SafeBuffer

This signature was generated using 65 samples from 2 applications.

# => is a > 0 & a < 10?
puts html_escape('is a > 0 & a < 10?')

This method is also aliased as h.
A utility method for escaping HTML tag characters.
def html_escape(s)
  unwrapped_html_escape(s).html_safe
end

def html_escape_once(s)

# => "<< Accept & Checkout"
html_escape_once('<< Accept & Checkout')

# => "1 < 2 & 3"
html_escape_once('1 < 2 & 3')

A utility method for escaping HTML without affecting existing escaped entities.
def html_escape_once(s)
  result = ActiveSupport::Multibyte::Unicode.tidy_bytes(s.to_s).gsub(HTML_ESCAPE_ONCE_REGEXP, HTML_ESCAPE)
  s.html_safe? ? result.html_safe : result
end

def json_escape(s)

might override +to_json+ to bypass Active Support's encoder).
JSON gem, do not provide this kind of protection by default; also some gems
is recommended that you always apply this helper (other libraries, such as the
is enabled, or if you are unsure where your JSON string originated from, it
Therefore, when you are unsure if +ActiveSupport.escape_html_entities_in_json+

applied even if +ActiveSupport.escape_html_entities_in_json+ is already true.
set to true. Because this transformation is idempotent, this helper can be
Active Support JSON encoder when +ActiveSupport.escape_html_entities_in_json+ is
The escaping performed in this method is identical to those performed in the

will happily eval() that string as JavaScript.
+current_user.to_json+ in the example above with user input instead, the browser
will open up serious XSS vulnerabilities. For example, if you replace the
WARNING: this helper only works with valid JSON. Using this on non-JSON values

...


automatically escaped for you:
like this, as any unsafe characters (including quotation marks) will be
If you need to output JSON elsewhere in your HTML, you can just do something

content returned by your JSON.
If that is the case, be sure to +html_escape+ or +sanitize+ any user-generated
whether or not it is being inserted via html(). Most jQuery plugins do this.
If your JSON is being used downstream for insertion into the DOM, be aware of

use inside HTML attributes.
automatically flag the result as HTML safe, since the raw value is unsafe to
don't get converted to " entities. +json_escape+ doesn't
It is necessary to +raw+ the result of +json_escape+, so that quotation marks


var currentUser = <%= raw json_escape(current_user.to_json) %>;
\"}"
json = JSON.generate({ name: ""})

JSON value, the output will have equivalent meaning when parsed:
context of a JSON string, so assuming the input is a valid and well-formed
These sequences have identical meaning as the original characters inside the
escaped as they are treated as newline characters in some JavaScript engines.
\u0026, \u003e, and \u003c. The Unicode sequences \u2028 and \u2029 are also
&, > and < characters are replaced with their equivalent unicode escaped form -
A utility method for escaping HTML entities in JSON strings. Specifically, the
def json_escape(s)
  result = s.to_s.gsub(JSON_ESCAPE_REGEXP, JSON_ESCAPE)
  s.html_safe? ? result.html_safe : result
end

def unwrapped_html_escape(s) # :nodoc:

Experimental RBS support (using type sampling data from the type_fusion project).

def unwrapped_html_escape: ((ActiveSupport::SafeBuffer | String | ActionView::OutputBuffer) s) -> (ActiveSupport::SafeBuffer | String | ActionView::OutputBuffer)

This signature was generated using 369 samples from 3 applications.

:nodoc:
This method is not for public consumption! Seriously!
HTML escapes strings but doesn't wrap them with an ActiveSupport::SafeBuffer.
def unwrapped_html_escape(s) # :nodoc:
  s = s.to_s
  if s.html_safe?
    s
  else
    CGI.escapeHTML(ActiveSupport::Multibyte::Unicode.tidy_bytes(s))
  end
end

def xml_name_escape(name)

Experimental RBS support (using type sampling data from the type_fusion project).

def xml_name_escape: ((String | Symbol) name) -> String

This signature was generated using 265 samples from 3 applications.

It follows the requirements of the specification: https://www.w3.org/TR/REC-xml/#NT-Name

# => "1___2___3"
xml_name_escape('1 < 2 & 3')

A utility method for escaping XML names of tags and names of attributes.
def xml_name_escape(name)
  name = name.to_s
  return "" if name.blank?
  starting_char = name[0].gsub(TAG_NAME_START_REGEXP, TAG_NAME_REPLACEMENT_CHAR)
  return starting_char if name.size == 1
  following_chars = name[1..-1].gsub(TAG_NAME_FOLLOWING_REGEXP, TAG_NAME_REPLACEMENT_CHAR)
  starting_char + following_chars
end