0.0.2 • Published 9 years ago

office2html v0.0.2

Weekly downloads
5
License
GNU
Repository
github
Last release
9 years ago

office2html

node module to convert office files to html

requires unoconv to be installed https://github.com/dagwieers/unoconv

convert office files (docx, pptx, xlsx) to an html document

Usage:

var office2html = require(office2html),
  generateHtml = office2html.generateHtml;

generateHtml('test/test.pptx', function(err, result) {
  console.log(result);
});

Test:

put a office document (docx, pptx, xlsx) in the test folder.