mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
11 lines
251 B
Ruby
11 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'asciidoctor'
|
|
require 'asciidoctor/extensions'
|
|
|
|
require_relative './asciidoctor/custom_extensions/chat_block_processor'
|
|
|
|
Asciidoctor::Extensions.register do
|
|
block ChatBlock if @document.basebackend? 'html'
|
|
end
|