Sha256: 66cd9ff7242de67a1f4a085244e5d2a0ac1f17be79d35e9ca68a9ee38eac01f6

Contents?: true

Size: 1.54 KB

Versions: 2

Compression:

Stored size: 1.54 KB

Contents

require "octopress-capture-tag/version"
require "octopress-tag-helpers"
require "jekyll"

module Octopress
  module Tags
    module Capture
      class Tag < Liquid::Block
        SYNTAX = /([[:word:]]+)\s*(\+=|\|\|=)?/o

        def initialize(tag_name, markup, tokens)
          @markup = markup
          super
        end

        def render(context)
          return unless markup = TagHelpers::Conditional.parse(@markup, context)
          if markup =~ TagHelpers::Var::HAS_FILTERS
            markup = $1
            filters = $2
          end

          if markup =~ SYNTAX
            var      = $1
            operator = $2
            value = super.lstrip

            unless value.nil? || filters.nil?
              value = TagHelpers::Var.render_filters(value, filters, context)
            end

            context = TagHelpers::Var.set_var(var, operator, value, context)
          else
            raise SyntaxError.new("Syntax Error in 'capture' - Valid syntax: capture [var]")
          end
          ''
        end
      end
    end
  end
end

Liquid::Template.register_tag('capture', Octopress::Tags::Capture::Tag)

if defined? Octopress::Docs
  Octopress::Docs.add({
    name:        "Octopress Capture Tag",
    gem:         "octopress-capture-tag",
    version:     Octopress::Tags::Capture::VERSION,
    description: "An improved Liqud capture tag supporting filters, concatenation, conditionals, and more",
    path:        File.expand_path(File.join(File.dirname(__FILE__), "../")),
    source_url:  "https://github.com/octopress/capture-tag"
  })
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
octopress-capture-tag-1.0.2 lib/octopress-capture-tag.rb
octopress-capture-tag-1.0.1 lib/octopress-capture-tag.rb