1.1.4 • Published 2 years ago

extract-word-docs v1.1.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

What is extract-word-docs?

extract-word-docs package will convert word documents (.docx) into html by using regex.

Installation

npm i extract-word-docs --save

Usage

const Document = require('extract-word-docs');

let document = new Document(filepath, {editable: false, delText: false});

document.extractAsHTML().then(data => {
    console.log(data);
});

Options

You can pause these options for the contructor.

editable: true | false (default is false)

  • true to get editable document (if you edit something, changes will occur only in the extracted document not in the original document).
  • false to get uneditable document.

delText: true | false (default is false)

  • true to get deleted text. (deleted text will contain red color by default).
  • false to neglect deleted text.

Supported elements:

  • Paragraphs
  • Tables

To do

  • Lists
  • Images
  • Links
  • Styles
1.1.4

2 years ago

1.1.3

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago