Sha256: aa28bd8dcd9355ebf288348b7366b3ab6497cd99ccbb86c80aad855dd4716a73

Contents?: true

Size: 951 Bytes

Versions: 43

Compression:

Stored size: 951 Bytes

Contents

# frozen_string_literal: true

module Nanoc::Helpers
  # @see http://nanoc.ws/doc/reference/helpers/#tagging
  module Tagging
    require 'nanoc/helpers/html_escape'
    include Nanoc::Helpers::HTMLEscape

    # @param [String] base_url
    # @param [String] none_text
    # @param [String] separator
    #
    # @return [String]
    def tags_for(item, base_url: nil, none_text: '(none)', separator: ', ')
      if item[:tags].nil? || item[:tags].empty?
        none_text
      else
        item[:tags].map { |tag| base_url ? link_for_tag(tag, base_url) : tag }.join(separator)
      end
    end

    # @param [String] tag
    #
    # @return [Array]
    def items_with_tag(tag)
      @items.select { |i| (i[:tags] || []).include?(tag) }
    end

    # @param [String] tag
    # @param [String] base_url
    #
    # @return [String]
    def link_for_tag(tag, base_url)
      %(<a href="#{h base_url}#{h tag}" rel="tag">#{h tag}</a>)
    end
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
nanoc-4.11.2 lib/nanoc/helpers/tagging.rb
nanoc-4.11.1 lib/nanoc/helpers/tagging.rb
nanoc-4.11.0 lib/nanoc/helpers/tagging.rb
nanoc-4.10.4 lib/nanoc/helpers/tagging.rb
nanoc-4.10.3 lib/nanoc/helpers/tagging.rb
nanoc-4.10.2 lib/nanoc/helpers/tagging.rb
nanoc-4.10.1 lib/nanoc/helpers/tagging.rb
nanoc-4.10.0 lib/nanoc/helpers/tagging.rb
nanoc-4.9.9 lib/nanoc/helpers/tagging.rb
nanoc-4.9.8 lib/nanoc/helpers/tagging.rb
nanoc-4.9.7 lib/nanoc/helpers/tagging.rb
nanoc-4.9.6 lib/nanoc/helpers/tagging.rb
nanoc-4.9.5 lib/nanoc/helpers/tagging.rb
nanoc-4.9.4 lib/nanoc/helpers/tagging.rb
nanoc-4.9.3 lib/nanoc/helpers/tagging.rb
nanoc-4.9.2 lib/nanoc/helpers/tagging.rb
nanoc-4.9.1 lib/nanoc/helpers/tagging.rb
nanoc-4.9.0 lib/nanoc/helpers/tagging.rb
nanoc-4.8.19 lib/nanoc/helpers/tagging.rb
nanoc-4.8.18 lib/nanoc/helpers/tagging.rb