Sha256: 4e0f76962622e61235a47f83508c043838bf93fb10f0ffcaf33b477ede142b14

Contents?: true

Size: 1.6 KB

Versions: 12

Compression:

Stored size: 1.6 KB

Contents

# ------------------------------------------------------------------------------
# ~/_plugins/asciidoctor-extensions/masterslider-block.rb
# Asciidoctor extension for J1 Masterslider
#
# Product/Info:
# https://jekyll.one
#
# Copyright (C) 2023, 2024 Juergen Adams
#
# J1 Template is licensed under the MIT License.
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md
# ------------------------------------------------------------------------------
require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal'
include Asciidoctor

# ------------------------------------------------------------------------------
# A block macro that embeds a (Master) Slider (parent) block
# into the output document.
#
# Usage:
#
#   masterslider::slider_id[role="additional classes"]
#
# Example:
#
#   .The slider title
#   masterslider::ms_00001[role="mt-3 mb-5"]
# ------------------------------------------------------------------------------
Asciidoctor::Extensions.register do

  class MasterSliderBlockMacro < Extensions::BlockMacroProcessor
    use_dsl

    named :masterslider
    name_positional_attributes 'role'
    default_attrs 'role' => 'mt-3 mb-3'

    def process parent, target, attributes

      title_html  = (attributes.has_key? 'title') ? %(<div class="carousel-title">#{attributes['title']}</div>\n) : nil
      html        = %(
        <div class="#{attributes['role']}">
          #{title_html}
          <div id="p_#{target}" class="slider master-slider-parent"></div>
        </div>
      )

      create_pass_block parent, html, attributes, subs: nil
    end
  end

  block_macro MasterSliderBlockMacro
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
j1-template-2024.2.1 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.2.0 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.5 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.4 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.3 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.2 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.1 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.1.0 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.0.3 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.0.2 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.0.1 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb
j1-template-2024.0.0 lib/starter_web/_plugins/asciidoctor/masterslider-block.rb