Sha256: 3ebb44b6e17861cbcb6d30fea980184dc31b71e6054e231a49bd3628ace76aa3
Contents?: true
Size: 1.18 KB
Versions: 12
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true class Occams::Content::Tag class Error < StandardError; end # @type [Occams::Cms::WithFragments] attr_reader :context # @type [Array<String, {String => String}>] params attr_reader :params # @type [String, nil] source attr_reader :source # @param [Occams::Cms::WithFragments] context # @param [Array<String, {String => String}>] params # @param [String, nil] source def initialize(context:, params: [], source: nil) @context = context @params = params @source = source end # Making sure we don't leak erb from tags by accident. # Tag classes can override this, like partials/helpers tags. def allow_erb? Occams.config.allow_erb end # Normally it's a {(String)}. However, if tag content has tags, # we need to expand them and that produces potentially more stuff. # @return [Array<String, Occams::Content::Tag>] def nodes template = Occams::Content::Renderer.new(@context) tokens = template.tokenize(content) template.nodes(tokens) end # @return [String] def content raise Error, 'This is a base class. It holds no content' end # @return [String] def render content end end
Version data entries
12 entries across 12 versions & 1 rubygems