├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── latexml-ruby.gemspec ├── lib └── latexml.rb └── test ├── advanced_test.rb ├── basics_test.rb └── helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /latexml-ruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/latexml-ruby.gemspec -------------------------------------------------------------------------------- /lib/latexml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/lib/latexml.rb -------------------------------------------------------------------------------- /test/advanced_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/test/advanced_test.rb -------------------------------------------------------------------------------- /test/basics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/test/basics_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/latexml-ruby/HEAD/test/helper.rb --------------------------------------------------------------------------------