Sha256: fceb2959578052aafd63dbd57bfef426cc666724088e22cea6e0c318e7e732e8
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module Nanoc::Helpers # @see https://nanoc.app/doc/reference/helpers/#filtering module HTMLEscape require 'nanoc/helpers/capturing' include Nanoc::Helpers::Capturing # @param [String] string # # @return [String] def html_escape(string = nil, &block) if block_given? # Capture and escape block data = capture(&block) escaped_data = html_escape(data) # Append filtered data to buffer buffer = eval('_erbout', block.binding) buffer << escaped_data elsif string unless string.is_a? String raise ArgumentError, 'The #html_escape or #h function needs either a ' \ "string or a block to HTML-escape, but #{string.class} was given" end string .gsub('&', '&') .gsub('<', '<') .gsub('>', '>') .gsub('"', '"') .gsub("'", ''') else raise 'The #html_escape or #h function needs either a ' \ 'string or a block to HTML-escape, but neither a string nor a block was given' end end alias h html_escape end end
Version data entries
6 entries across 6 versions & 1 rubygems