Sha256: 7117174acafe10ebd8407a9184eed0d2a7ee27f73d8a99223a21ec4b3c77a221

Contents?: true

Size: 1.75 KB

Versions: 21

Compression:

Stored size: 1.75 KB

Contents

require "octicons"
require "jekyll-octicons/version"
require "liquid"
require "jekyll/liquid_extensions"

module Jekyll
  class Octicons < Liquid::Tag
    include Jekyll::LiquidExtensions

    # Syntax for the octicon symbol
    Syntax = /\A(#{Liquid::VariableSignature}+)/

    # For interpolation, look for liquid variables
    Variable = /\{\{\s*([\w]+\.?[\w]*)\s*\}\}/i

    # Copied from Liquid::TagAttributes to allow dashes in tag names:
    #
    #   {% octicon alert area-label:"Hello World!" %}
    #
    TagAttributes = /([\w-]+)\s*\:\s*(#{Liquid::QuotedFragment})/o

    def initialize(tag_name, markup, options)
      super
      @markup = markup

      # If there's interpolation going on, we need to do this in render
      prepare(markup) unless match = markup.match(Variable)
    end

    def render(context)
      prepare(interpolate(@markup, context)) if match = @markup.match(Variable)

      return nil if @symbol.nil?
      ::Octicons::Octicon.new(@symbol, @options).to_svg
    end

    private

    def interpolate(markup, context)
      markup.scan Variable do |variable|
        markup = markup.gsub(Variable, lookup_variable(context, variable.first))
      end
      markup
    end

    def prepare(markup)
      @symbol = symbol(markup)
      @options = string_to_hash(markup)
    end

    def symbol(markup)
      if match = markup.match(Syntax)
        match[1]
      end
    end

    # Create a ruby hash from a string passed by the jekyll tag
    def string_to_hash(markup)
      options = {}

      if match = markup.match(Syntax)
        markup.scan(TagAttributes) do |key, value|
          options[key.to_sym] = value.gsub(/\A"|"\z/, "")
        end
      end

      options
    end
  end
end

Liquid::Template.register_tag("octicon", Jekyll::Octicons)

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
jekyll-octicons-19.8.0 lib/jekyll-octicons.rb
jekyll-octicons-19.7.0 lib/jekyll-octicons.rb
jekyll-octicons-19.6.0 lib/jekyll-octicons.rb
jekyll-octicons-19.5.0 lib/jekyll-octicons.rb
jekyll-octicons-19.4.0 lib/jekyll-octicons.rb
jekyll-octicons-19.3.0 lib/jekyll-octicons.rb
jekyll-octicons-19.2.0 lib/jekyll-octicons.rb
jekyll-octicons-19.1.0 lib/jekyll-octicons.rb
jekyll-octicons-19.0.0 lib/jekyll-octicons.rb
jekyll-octicons-17.10.0 lib/jekyll-octicons.rb
jekyll-octicons-17.9.0 lib/jekyll-octicons.rb
jekyll-octicons-17.8.0 lib/jekyll-octicons.rb
jekyll-octicons-17.7.0 lib/jekyll-octicons.rb
jekyll-octicons-17.6.0 lib/jekyll-octicons.rb
jekyll-octicons-17.5.0 lib/jekyll-octicons.rb
jekyll-octicons-17.4.1 lib/jekyll-octicons.rb
jekyll-octicons-17.4.0 lib/jekyll-octicons.rb
jekyll-octicons-17.3.0 lib/jekyll-octicons.rb
jekyll-octicons-17.2.0 lib/jekyll-octicons.rb
jekyll-octicons-17.1.0 lib/jekyll-octicons.rb