TIL: ERB verbatim tag

TIL about the new-ish "verbatim" ERB tag:

May 17, 2025 - 17:04
 0
TIL: ERB verbatim tag

TIL about the new-ish "verbatim" ERB tag: <%==

https://guides.rubyonrails.org/active_support_core_extensions.html#safe-strings

<%= raw something %>

is equivalent to:

<%== something %>