Librex
======
Elixir library to convert office documents to other formats using LibreOffice.
[](https://travis-ci.org/ricn/librex)
[](https://hex.pm/packages/librex)
[](http://inch-ci.org/github/ricn/librex)
## Requirements
You must have LibreOffice installed of course and the soffice binary must be present in your PATH.
The code has been tested with Libreoffice 4.4.
## Installation
Add this to your `mix.exs` file, then run `mix do deps.get, deps.compile`:
```elixir
{:librex, "~> 0.9"}
```
## Examples
```elixir
import Librex
convert("/Users/ricn/files/example.docx", "/Users/ricn/files/example.pdf")
convert("/Users/ricn/files/example.docx", "/Users/ricn/files/example.odt")
```
## Credits
The following people have contributed ideas, documentation, or code to Librex:
* Richard Nyström
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request