Sha256: bb7d1d87f8e5295a29e1404b7e13bc005816c0cbdf6553d6480a74db47607e53

Contents?: true

Size: 419 Bytes

Versions: 87

Compression:

Stored size: 419 Bytes

Contents

# frozen_string_literal: true

module Alchemy
  module Ingredients
    # A HTML string
    #
    class Html < Alchemy::Ingredient
      # The first 30 escaped characters from value
      #
      # Used by the Element#preview_text method.
      #
      # @param [Integer] max_length (30)
      #
      def preview_text(max_length = 30)
        ::CGI.escapeHTML(value.to_s)[0..max_length - 1]
      end
    end
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
alchemy_cms-7.3.4 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.3.3 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.3.2 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.7 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.3.1 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.3.0 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.6 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.5 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.1.12 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.0.15 app/models/alchemy/ingredients/html.rb
alchemy_cms-6.1.10 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.4 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.1.11 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.3 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.1.10 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.2 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.1.9 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.0.14 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.2.1 app/models/alchemy/ingredients/html.rb
alchemy_cms-7.0.13 app/models/alchemy/ingredients/html.rb