Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 362 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 362 Bytes

docx2html

a javascript converter from docx to html

#install $ npm install docx2html

#license GPL

#API It will convert into a div in body with following code.

<head>
	<script src="../dist/docx2html.js"></script>
</head>
<body>
	<input type="file" style="position:absolute;top:0" onchange="require('docx2html')(this.files[0])">
</body>