Sha256: e56499e28aad23ebccf0d6003d5cc3e091af6177c560eb9502d921e866cc16bd

Contents?: true

Size: 953 Bytes

Versions: 6

Compression:

Stored size: 953 Bytes

Contents

# frozen_string_literal: true

module Nanoc::Helpers
  # @see https://nanoc.app/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

6 entries across 6 versions & 1 rubygems

Version Path
nanoc-4.13.3 lib/nanoc/helpers/tagging.rb
nanoc-4.13.2 lib/nanoc/helpers/tagging.rb
nanoc-4.13.1 lib/nanoc/helpers/tagging.rb
nanoc-4.13.0 lib/nanoc/helpers/tagging.rb
nanoc-4.12.21 lib/nanoc/helpers/tagging.rb
nanoc-4.12.20 lib/nanoc/helpers/tagging.rb