# micromark-factory-mdx-expression

> micromark factory to parse MDX expressions (found in JSX attributes, flow, text)

Latest version **2.0.3** (published 2025-03-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install micromark-factory-mdx-expression
pnpm add micromark-factory-mdx-expression
yarn add micromark-factory-mdx-expression
bun add micromark-factory-mdx-expression
```

## Health

**Score 35/100 (D)** — status: maintenance-mode.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.3 |
| Published | 2025-03-24 |
| First published | 2021-06-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM |
| Dependencies | 9 |
| Unpacked size | 34 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Author | Titus Wormer |
| Maintainers | wooorm |
| Keywords | expression, factory, mdx, micromark |

## Links

- npm: https://www.npmjs.com/package/micromark-factory-mdx-expression
- Repository: https://github.com/micromark/micromark-extension-mdx-expression.git#main
- Homepage: https://github.com/micromark/micromark-extension-mdx-expression/tree/main#readme
- Issues: https://github.com/micromark/micromark-extension-mdx-expression/issues
- Funding: https://github.com/sponsors/unifiedjs
- npm.io page: https://npm.io/package/micromark-factory-mdx-expression

## Dependencies (9)

- [devlop](https://npm.io/package/devlop.md) ^1.0.0
- [@types/estree](https://npm.io/package/@types/estree.md) ^1.0.0
- [vfile-message](https://npm.io/package/vfile-message.md) ^4.0.0
- [micromark-util-types](https://npm.io/package/micromark-util-types.md) ^2.0.0
- [micromark-util-symbol](https://npm.io/package/micromark-util-symbol.md) ^2.0.0
- [micromark-factory-space](https://npm.io/package/micromark-factory-space.md) ^2.0.0
- [micromark-util-character](https://npm.io/package/micromark-util-character.md) ^2.0.0
- [micromark-util-events-to-acorn](https://npm.io/package/micromark-util-events-to-acorn.md) ^2.0.0
- [unist-util-position-from-estree](https://npm.io/package/unist-util-position-from-estree.md) ^2.0.0

## Alternatives

- [@mdxeditor/editor](https://npm.io/package/@mdxeditor/editor.md) — 962.4K weekly downloads
- [mmdb-lib](https://npm.io/package/mmdb-lib.md) — 680.9K weekly downloads
- [playcanvas](https://npm.io/package/playcanvas.md) — 36.2K weekly downloads
- [@glw907/cairn-cms](https://npm.io/package/@glw907/cairn-cms.md) — 967 weekly downloads
- [markdown-to-confluence](https://npm.io/package/markdown-to-confluence.md) — 103 weekly downloads

## Recent versions

- 2.0.3 (latest) — 2025-03-24
- 1.0.0-alpha.1 (next) — 2021-06-09
- 2.0.2 — 2024-09-02
- 2.0.1 — 2023-07-07
- 2.0.0 — 2023-06-22
- 1.0.9 — 2023-05-30
- 1.0.8 — 2023-05-13
- 1.0.7 — 2023-01-22
- 1.0.6 — 2022-02-01
- 1.0.5 — 2021-11-21
- 1.0.4 — 2021-10-09
- 1.0.3 — 2021-10-02
- 1.0.2 — 2021-09-23
- 1.0.1 — 2021-09-23
- 1.0.0 — 2021-06-22

## README

# micromark-factory-mdx-expression

[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
[![Sponsors][sponsors-badge]][opencollective]
[![Backers][backers-badge]][opencollective]
[![Chat][chat-badge]][chat]

[micromark][] factory to parse MDX expressions (found in JSX attributes, flow,
text).

## Contents

* [Install](#install)
* [Use](#use)
* [API](#api)
  * [`factoryMdxExpression(…)`](#factorymdxexpression)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Contribute](#contribute)
* [License](#license)

## Install

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

```sh
npm install micromark-factory-mdx-expression
```

In Deno with [`esm.sh`][esmsh]:

```js
import {factoryMdxExpression} from 'https://esm.sh/micromark-factory-mdx-expression@2'
```

In browsers with [`esm.sh`][esmsh]:

```html
<script type="module">
  import {factoryMdxExpression} from 'https://esm.sh/micromark-factory-mdx-expression@2?bundle'
</script>
```

## Use

```js
import {ok as assert} from 'devlop'
import {factoryMdxExpression} from 'micromark-factory-mdx-expression'
import {codes} from 'micromark-util-symbol'

// A micromark tokenizer that uses the factory:
/** @type {Tokenizer} */
function tokenizeFlowExpression(effects, ok, nok) {
  return start

  // …

  /** @type {State} */
  function start(code) {
    assert(code === codes.leftCurlyBrace, 'expected `{`')
    return factoryMdxExpression.call(
      self,
      effects,
      factorySpace(effects, after, types.whitespace),
      'mdxFlowExpression',
      'mdxFlowExpressionMarker',
      'mdxFlowExpressionChunk',
      acorn,
      acornOptions,
      addResult,
      spread,
      allowEmpty
    )(code)
  }

  // …
}
```

## API

This module exports the identifier
[`factoryMdxExpression`][api-factory-mdx-expression].
There is no default export.

The export map supports the [`development` condition][development].
Run `node --conditions development module.js` to get instrumented dev code.
Without this condition, production code is loaded.

### `factoryMdxExpression(…)`

###### Parameters

* `effects` (`Effects`)
  — context
* `ok` (`State`)
  — state switched to when successful
* `type` (`string`)
  — token type for whole (`{}`)
* `markerType` (`string`)
  — token type for the markers (`{`, `}`)
* `chunkType` (`string`)
  — token type for the value (`1`)
* `acorn` (`Acorn`)
  — object with `acorn.parse` and `acorn.parseExpressionAt`
* `acornOptions` ([`AcornOptions`][acorn-options])
  — configuration for acorn
* `boolean` (`addResult`, default: `false`)
  — add `estree` to token
* `boolean` (`spread`, default: `false`)
  — support a spread (`{...a}`) only
* `boolean` (`allowEmpty`, default: `false`)
  — support an empty expression
* `boolean` (`allowLazy`, default: `false`)
  — support lazy continuation of an expression

###### Returns

`State`.

## Types

This package is fully typed with [TypeScript][].
It exports the additional types [`Acorn`][acorn] and
[`AcornOptions`][acorn-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-factory-mdx-expression@^2`, compatible with Node.js 16.

This package works with `micromark` version `3` and later.

## Security

This package is safe.

## Contribute

See [`contributing.md`][contributing] in [`micromark/.github`][health] for ways
to get started.
See [`support.md`][support] for ways to get help.

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

## License

[MIT][license] © [Titus Wormer][author]

<!-- Definitions -->

[acorn]: https://github.com/acornjs/acorn

[acorn-options]: https://github.com/acornjs/acorn/blob/96c721dbf89d0ccc3a8c7f39e69ef2a6a3c04dfa/acorn/dist/acorn.d.ts#L16

[api-factory-mdx-expression]: #micromark-factory-mdx-expression

[author]: https://wooorm.com

[backers-badge]: https://opencollective.com/unified/backers/badge.svg

[build]: https://github.com/micromark/micromark-extension-mdx-expression/actions

[build-badge]: https://github.com/micromark/micromark-extension-mdx-expression/workflows/main/badge.svg

[chat]: https://github.com/micromark/micromark/discussions

[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg

[coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md

[contributing]: https://github.com/micromark/.github/blob/main/contributing.md

[coverage]: https://codecov.io/github/micromark/micromark-extension-mdx-expression

[coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark-extension-mdx-expression.svg

[development]: https://nodejs.org/api/packages.html#packages_resolving_user_conditions

[downloads]: https://www.npmjs.com/package/micromark-factory-mdx-expression

[downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-mdx-expression.svg

[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c

[esmsh]: https://esm.sh

[health]: https://github.com/micromark/.github

[license]: https://github.com/micromark/micromark-extension-mdx-expression/blob/main/license

[micromark]: https://github.com/micromark/micromark

[npm]: https://docs.npmjs.com/cli/install

[opencollective]: https://opencollective.com/unified

[size]: https://bundlejs.com/?q=micromark-factory-mdx-expression

[size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-mdx-expression

[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg

[support]: https://github.com/micromark/.github/blob/main/support.md

[typescript]: https://www.typescriptlang.org

---
_Source: https://npm.io/package/micromark-factory-mdx-expression · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
