Skip to article content
MyST Transforms

myst-transforms

myst-transforms on npm

myst-transforms is a library for transforming myst markdown documents.

OverviewΒΆ

These transforms take AST from mystjs and turn it into usable forms, enforce document structure, or provide other utilities.

These utilities are available on npm:

npm install myst-transforms

You can use the plugins as follows:

import { unified } from 'unified';
import { mathPlugin } from 'myst-transforms';

unified()
  .use(mathPlugin, { macros: {} }) // Add the plugin with any options
  .run(tree); // Run the AST through the set of plugins

// The AST has now been modified in place.
MyST MarkdownMyST Markdown
Community-driven tools for the future of technical communication and publication