myst-transforms
TypeScript icon, indicating that this package has built-in type declarations

1.3.10 • Public • Published

myst-transforms

unifiedjs transforms for working with MyST Markdown documents.

Overview

These transforms take AST from mystmd 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.

Readme

Keywords

none

Package Sidebar

Install

npm i myst-transforms

Weekly Downloads

168

Version

1.3.10

License

MIT

Unpacked Size

184 kB

Total Files

107

Last publish

Collaborators

  • rowanc1
  • stevejpurves
  • ebp-bot