├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── bin └── docx_converter ├── docx_converter.gemspec └── lib ├── docx_converter.rb └── docx_converter ├── parser.rb ├── postprocessor.rb ├── render.rb └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/docx_converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/bin/docx_converter -------------------------------------------------------------------------------- /docx_converter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/docx_converter.gemspec -------------------------------------------------------------------------------- /lib/docx_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/lib/docx_converter.rb -------------------------------------------------------------------------------- /lib/docx_converter/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/lib/docx_converter/parser.rb -------------------------------------------------------------------------------- /lib/docx_converter/postprocessor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/lib/docx_converter/postprocessor.rb -------------------------------------------------------------------------------- /lib/docx_converter/render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/lib/docx_converter/render.rb -------------------------------------------------------------------------------- /lib/docx_converter/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfranzl/docx_converter/HEAD/lib/docx_converter/version.rb --------------------------------------------------------------------------------