escape_once(html)
Instance Public methods
Returns an escaped version of html
without affecting existing
escaped entities.
1 2 3 4 5 | escape_once( "1 < 2 & 3" ) # => "1 < 2 & 3" escape_once( "<< Accept & Checkout" ) # => "<< Accept & Checkout" |
Please login to continue.