npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@couleetech/n8n-nodes-pandoc

v2.0.2

Published

n8n node for document conversion using Pandoc

Readme

n8n-nodes-pandoc

This is a node for n8n that allows you to convert documents between different formats using Pandoc. It supports converting between various formats including Markdown, HTML, Microsoft Word (docx), LaTeX, and Plain Text.

NOTICE

This is just a node that I needed for a project and thought I'd share. It is 95% ai generated, Written in a couple hours, so don't expect the world from it. It works for the workflow I needed it for ( to convert a docx to markdown ). It may get future updates, but I'm not promising anything.

Prerequisites

  • n8n installed
  • Pandoc installed on the system

Installation

  1. In Community Nodes, install @couleetech/n8n-nodes-pandoc

  2. Important: Pandoc must be installed on your system for this node to work.

Docker Installation

If you're using n8n with Docker Compose, you'll need to modify your setup to include Pandoc. Here's how:

  1. Create a Dockerfile:

    FROM docker.n8n.io/n8nio/n8n
    
    USER root
    RUN apk add --no-cache pandoc
    
    USER node
  2. Update your docker-compose.yml:

    services:
      n8n:
        build: .
        # ... rest of your n8n configuration

    Instead of:

    services:
      n8n:
        image: docker.n8n.io/n8nio/n8n

Usage

The Pandoc Convert node provides the following functionality:

Input Parameters

  • Binary Property: Name of the binary property that contains the file to convert
  • From Format: Input format of the document (markdown, html, docx, latex, plain)
  • To Format: Output format for the conversion (markdown, html, docx, latex, plain)

Supported Formats

  • Markdown
  • HTML
  • Microsoft Word (docx)
  • LaTeX
  • Plain Text

Example Workflow

  1. Upload or input a document using nodes like HTTP Request, Read Binary File, etc.
  2. Connect the output to the Pandoc Convert node
  3. Configure the conversion parameters (from format and to format)
  4. The node will output the converted document in the specified format

Outputs

The node has two outputs:

  1. Main output with the converted document
  2. Secondary output for extracted images (if applicable)

Support

For issues and feature requests, please open an issue on GitHub.