MS Word utilities, especially targeted 3GPP
npm install proj3rd/doc3rd
Parse MS Word document and extract paragraphs and tables in order.
import { parse } from 'doc3rd';
const zip = readFileSync('38413-h00.docx');
const parsed = await parse(zip);
- Returns a list of
Paragraph
s andTable
s in order Paragraph
text
outlineLevel
: Optional
Table
: Contains a list ofRow
sRow
: Contains a list ofCell
sCell
: Contains a list ofParagraph
s