1. micromark-extension-mdxjs
micromark extension to support MDX.js
micromark-extension-mdxjs
Package: micromark-extension-mdxjs
Created by: micromark
Last modified: Thu, 19 Oct 2023 12:39:35 GMT
Version: 3.0.0
License: MIT
Downloads: 5,305,553
Repository: https://github.com/micromark/micromark-extension-mdxjs

Install

npm install micromark-extension-mdxjs
yarn add micromark-extension-mdxjs

micromark-extension-mdxjs

Build
Coverage
Downloads
Size
Sponsors
Backers
Chat

micromark extensions to support MDX.

Contents

What is this?

This package contains an extension that adds support for the syntax enabled
by MDX to micromark.
This extension is used inside MDX.
It supports export/imports, expressions, JSX, and turns some markdown features
off.

When to use this

This project is useful when you want to support MDX.

You can use this extension when you are working with micromark.

This package is aware of JavaScript syntax.
If you want to be unaware of JavaScript, for example because expressions can
include Rust or variables or whatnot, use
micromark-extension-mdx.

Alternatively, you can also use the underlying syntax extensions separately:

When you need a syntax tree, combine this package with
mdast-util-mdx.

All these packages are used in remark-mdx, which focusses on
making it easier to transform content by abstracting these internals away.

Install

This package is ESM only.
In Node.js (version 16+), install with npm:

 npm install micromark-extension-mdxjs

In Deno with esm.sh:

 import {mdxjs} from 'https://esm.sh/micromark-extension-mdxjs@2'

In browsers with esm.sh:

 <script type="module">
  import {mdxjs} from 'https://esm.sh/micromark-extension-mdxjs@2?bundle'
</script>

Use

 import {micromark} from 'micromark'
import {mdxjs} from 'micromark-extension-mdxjs'

const output = micromark('import a from "b"\n\na <b /> c {1 + 1} d', {
  extensions: [mdxjs()]
})

console.log(output)

Yields:

 <p>a  c  d</p>

…which is useless: go to a syntax tree with
mdast-util-from-markdown and
mdast-util-mdx instead.

API

This package exports the identifier mdxjs.
There is no default export.

The separate extensions support the development condition.
Run node --conditions development module.js to get instrumented dev code.
Without this condition, production code is loaded.

mdxjs(options?)

Create an extension for micromark to enable MDX syntax.

Parameters
  • options (Options, optional)
    — configuration; passed to all extensions
Returns

Extension for micromark that can be passed in extensions to enable MDX
syntax (Extension).

Options

Configuration (TypeScript type).

Type
 export type {Options} from 'micromark-extension-mdx-expression'

See Options.

Authoring

For recommendations on how to author MDX, see each corresponding readme:

Syntax

For info on the syntax of these features, see each corresponding readme:

Errors

For info on what errors are thrown, see each corresponding readme:

Types

This package is fully typed with TypeScript.
It exports the additional type Options.

Compatibility

Projects maintained by the unified collective are compatible with maintained
versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
micromark-extension-mdxjs@^2, compatible with Node.js 16.

This package works with micromark version 3 and later.

Security

This package is safe.

Contribute

See contributing.md in micromark/.github for ways to get
started.
See support.md for ways to get help.

This project has a code of conduct.
By interacting with this repository, organization, or community you agree to
abide by its terms.

License

MIT © Titus Wormer

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin