├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Gemfile ├── LICENSE ├── README.adoc ├── Rakefile ├── WORKLOG.adoc ├── bin └── docbookrx ├── docbookrx.gemspec ├── lib ├── docbookrx.rb └── docbookrx │ ├── docbook_visitor.rb │ └── identity.rb ├── spec ├── lib │ └── docbookrx │ │ └── docbookrx_spec.rb ├── spec_helper.rb └── support │ ├── default_config.rb │ └── helpers.rb └── tasks ├── bundler.rake └── rspec.rake /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/README.adoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/Rakefile -------------------------------------------------------------------------------- /WORKLOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/WORKLOG.adoc -------------------------------------------------------------------------------- /bin/docbookrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/bin/docbookrx -------------------------------------------------------------------------------- /docbookrx.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/docbookrx.gemspec -------------------------------------------------------------------------------- /lib/docbookrx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/lib/docbookrx.rb -------------------------------------------------------------------------------- /lib/docbookrx/docbook_visitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/lib/docbookrx/docbook_visitor.rb -------------------------------------------------------------------------------- /lib/docbookrx/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/lib/docbookrx/identity.rb -------------------------------------------------------------------------------- /spec/lib/docbookrx/docbookrx_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/spec/lib/docbookrx/docbookrx_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/default_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/spec/support/default_config.rb -------------------------------------------------------------------------------- /spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/spec/support/helpers.rb -------------------------------------------------------------------------------- /tasks/bundler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/tasks/bundler.rake -------------------------------------------------------------------------------- /tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciidoctor/docbookrx/HEAD/tasks/rspec.rake --------------------------------------------------------------------------------