Pandoc: Document format converter
Pandoc - Document Converter
Came across this tool on Ubuntu - Pandoc - Universal Document Converter. Very handy tool to convert between different formats.I had to convert a LibreOffice Writer document to EPUB format.
pandoc test.odt -f odt -t epub -s -o test.epub
test.odt - original document in odt format -f - input format
-t - output format
-s - standalone document
-o - output file
Comments
Post a Comment