Sha256: e686fea295f20cfbbbef657b40388d1c07c4a924b64bad5eed64658a5bf480a4
Contents?: true
Size: 1.18 KB
Versions: 1
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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
occams-1.0.1 | lib/occams/content/tag.rb |