Sha256: ac62c645e3b40fd37546a411a1432d9ff034c183e0deb822171c1ffc9e0bb827
Contents?: true
Size: 1.25 KB
Versions: 8
Compression:
Stored size: 1.25 KB
Contents
# ------------------------------------------------------------------------------ # ~/_plugins/asciidoctor-extensions/carousel-block.rb # Asciidoctor extension for J1 Carousel (Owl Carousel) # # Product/Info: # https://jekyll.one # # Copyright (C) 2019 Juergen Adams # # J1 Template is licensed under the MIT License. # See: https://github.com/jekyll-one-org/j1_template/blob/master/LICENSE # # ------------------------------------------------------------------------------ require 'asciidoctor/extensions' unless RUBY_ENGINE == 'opal' include Asciidoctor # A block macro that embeds a Carousel block into the output document # # Usage # # carousel::carousel:id[role="additional classes"] # # Example: # # .The carousel title # carousel::owl_demo_simple[role="mb-5"] # Asciidoctor::Extensions.register do class ImageBlockMacro < Extensions::BlockMacroProcessor use_dsl named :carousel name_positional_attributes 'role' def process parent, target, attrs title_html = (attrs.has_key? 'title') ? %(<div class="slider-title">#{attrs['title']}</div>\n) : nil html = %(#{title_html} <div id="#{target}" class="#{attrs['role']}"></div>) create_pass_block parent, html, attrs, subs: nil end end block_macro ImageBlockMacro end
Version data entries
8 entries across 8 versions & 1 rubygems