Sha256: 0c562805350bf074d8b9a63a605b4f574ceec5d7efeeaae794a87b88ea751d29

Contents?: true

Size: 1.14 KB

Versions: 12

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

module Nanoc::Helpers
  # @see https://nanoc.ws/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('&', '&amp;')
          .gsub('<', '&lt;')
          .gsub('>', '&gt;')
          .gsub('"', '&quot;')
          .gsub("'", '&#39;')
      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

12 entries across 12 versions & 1 rubygems

Version Path
nanoc-4.12.19 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.18 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.17 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.16 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.15 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.14 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.13 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.12 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.11 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.10 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.9 lib/nanoc/helpers/html_escape.rb
nanoc-4.12.8 lib/nanoc/helpers/html_escape.rb