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

remark-docx

v0.3.25

Published

remark plugin to compile markdown to docx (Microsoft Word, Office Open XML).

Readme

remark-docx

npm npm check demo

remark plugin to compile markdown to docx (Microsoft Word, Office Open XML).

  • Uses docx for compilation.
  • Works in any environment (e.g. browser, Node.js).
  • Provides reasonable default style and also tunable enough (WIP).
  • Supports advanced layouts (RTL, vertical, 2 columns).
  • Has own plugin system. You can fully customize markdown to Word transformation.

Supported mdast nodes

Currently, some of the default styles may not be nice. If you have feature requests or improvements, please create a issue or PR.

  • [x] paragraph
  • [x] heading
  • [x] thematicBreak (rendered as Page Break / Section Break / Horizontal line)
  • [x] blockquote
  • [x] list / listItem
  • [x] table / tableRow / tableCell
  • [x] definition
  • [x] text
  • [x] emphasis
  • [x] strong
  • [x] delete
  • [x] inlineCode
  • [x] break
  • [x] link / linkReference
  • [x] footnoteReference / footnoteDefinition
  • [x] image / imageReference (plugin)
  • [x] html (plugin)
  • [x] code (plugin)
  • [x] math / inlineMath (remark-math and plugin)

Demo

https://inokawa.github.io/remark-docx/

Install

npm install remark-docx

Getting started

Browser

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import { saveAs } from "file-saver";

const processor = unified().use(markdown).use(docx);

const text = "# hello world";

(async () => {
  const doc = await processor.process(text);
  const arrayBuffer = await doc.result;
  saveAs(new Blob([arrayBuffer]), "example.docx");
})();

Node.js

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import * as fs from "fs";

const processor = unified().use(markdown).use(docx);

const text = "# hello world";

(async () => {
  const doc = await processor.process(text);
  const arrayBuffer = await doc.result;
  fs.writeFileSync("example.docx", Buffer.from(arrayBuffer));
})();

Plugins

Image

Fetch image data and embed into docx. png, jpg, gif, bmp, svg urls are supported.

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import { imagePlugin } from "remark-docx/plugins/image";

const processor = unified()
  .use(markdown)
  .use(docx, { plugins: [imagePlugin()] });

URLs are resolved with fetch API by default. You can use other methods such as file system.

import * as fs from "fs/promises";

imagePlugin({
  load: async (url) => {
    return (await fs.readFile(url)).buffer;
  },
});

When we embed svg to docx, it also requires png image since legacy Word can't render svg. On browser, this plugin generate it automatically. On other enviroment like Node.js, please implement fallbackSvg prop.

import sharp from "sharp";

imagePlugin({
  fallbackSvg: async ({ buffer }) => {
    return (await sharp(buffer).png().toBuffer()).buffer;
  },
});

Code

Syntax highlight

Syntax highlighting with shiki.

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import { shikiPlugin } from "remark-docx/plugins/shiki";

const processor = unified()
  .use(markdown)
  .use(docx, { plugins: [shikiPlugin({ theme: "dark-plus" })] });

Mermaid

Render Mermaid in code blocks with mermaid language. It only works in browser for now.

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import { mermaidPlugin } from "remark-docx/plugins/mermaid";

const processor = unified()
  .use(markdown)
  .use(docx, { plugins: [mermaidPlugin()] });

Math

Render LaTeX with MathJax.

import { unified } from "unified";
import markdown from "remark-parse";
import math from "remark-math";
import docx from "remark-docx";
import { latexPlugin } from "remark-docx/plugins/latex";

const processor = unified()
  .use(markdown)
  .use(math)
  .use(docx, { plugins: [latexPlugin()] });

HTML

Transform HTML to markdown.

import { unified } from "unified";
import markdown from "remark-parse";
import docx from "remark-docx";
import { htmlPlugin } from "remark-docx/plugins/html";

const processor = unified()
  .use(markdown)
  .use(docx, { plugins: [htmlPlugin()] });

Documentation

Contribute

All contributions are welcome. If you find a problem, feel free to create an issue or a PR.

Making a Pull Request

  1. Fork this repo.
  2. Run npm install.
  3. Commit your fix.
  4. Add tests to cover the fix.
  5. Make a PR and confirm all the CI checks passed.

Related projects