Package Information
Released: 7/31/2025
Downloads: 18 weekly / 54 monthly
Latest Version: 0.1.0
Author: annhdev
Available Nodes
Documentation

n8n-nodes-docx-extractor
This is a custom n8n node that converts DOCX files to HTML, Text or Markdown format using the mammoth and turndown libraries.
This node is designed to be used in n8n workflows to facilitate the conversion of DOCX documents into more web-friendly formats like HTML, Text or Markdown.
Features
- Convert
DOCXfiles toHTML,TextorMarkdownformat. - Support binary data input.
- Easy integration into n8n workflows.
Installation
npm install n8n-nodes-docx-extractor
Usage
- Add the node to your n8n workflow.
- Connect the node to a previous node that outputs a
DOCXfile, ensuring that the input data is in binary format.- The input should be a binary file with the MIME type
application/vnd.openxmlformats-officedocument.wordprocessingml.document.
- The input should be a binary file with the MIME type
- Configure the node by selecting the desired output format (
HTML,Text,Markdown, orAll).
Configuration
- Output Format: Choose the desired output format for the conversion:
HTML: Converts theDOCXfile to HTML format.Text: Converts theDOCXfile to plain text format.Markdown: Converts theDOCXfile to Markdown format.All: Converts theDOCXfile to all formats (HTML,Text, andMarkdown).