Sha256: f94333d7357e2f3e754f2656adcb85700545cb45049ad9f49423ad262e04b589

Contents?: true

Size: 392 Bytes

Versions: 4

Compression:

Stored size: 392 Bytes

Contents

# frozen_string_literal: true
require 'asciidoctor/doctest/io/base'
require 'asciidoctor/doctest/io/asciidoc'
require 'asciidoctor/doctest/io/xml'
require 'asciidoctor/doctest/factory'

module Asciidoctor::DocTest
  module IO
    extend Factory

    register :asciidoc, Asciidoc, file_ext: '.adoc'
    register :xml, XML, file_ext: '.xml'
    register :html, XML, file_ext: '.html'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
asciidoctor-doctest-2.0.0.beta.7 lib/asciidoctor/doctest/io.rb
asciidoctor-doctest-2.0.0.beta.6 lib/asciidoctor/doctest/io.rb
asciidoctor-doctest-2.0.0.beta.5 lib/asciidoctor/doctest/io.rb
asciidoctor-doctest-2.0.0.beta.4 lib/asciidoctor/doctest/io.rb