mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 12:19:36 +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
|