Socket
Socket
Sign inDemoInstall

mdast-util-mdx-expression

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdast-util-mdx-expression - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

complex-types.d.ts

@@ -35,5 +35,5 @@ import {Literal} from 'mdast'

interface ElementContentMap {
mdxTextExpression: MdxTextExpression
mdxFlowExpression: MdxFlowExpression
mdxFlowExpression: MdxFlowExpression
}
}
{
"name": "mdast-util-mdx-expression",
"version": "1.2.0",
"version": "1.2.1",
"description": "mdast extension to parse and serialize MDX (or MDX.js) expressions",

@@ -59,3 +59,3 @@ "license": "MIT",

"unist-util-remove-position": "^4.0.0",
"xo": "^0.47.0"
"xo": "^0.49.0"
},

@@ -62,0 +62,0 @@ "scripts": {

@@ -11,22 +11,44 @@ # mdast-util-mdx-expression

Extension for [`mdast-util-from-markdown`][from-markdown] and/or
[`mdast-util-to-markdown`][to-markdown] to support MDX (or MDX.js) expressions.
When parsing (`from-markdown`), must be combined with
[`micromark-extension-mdx-expression`][extension].
[mdast][] extensions to parse and serialize [MDX][] expressions.
This utility handles parsing and serializing.
See [`micromark-extension-mdx-expression`][extension] for how the syntax works.
## Contents
* [What is this?](#what-is-this)
* [When to use this](#when-to-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`mdxExpressionFromMarkdown`](#mdxexpressionfrommarkdown)
* [`mdxExpressionToMarkdown`](#mdxexpressiontomarkdown)
* [Syntax tree](#syntax-tree)
* [Nodes](#nodes)
* [Content model](#content-model)
* [Types](#types)
* [Compatibility](#compatibility)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)
## What is this?
This package contains extensions that add support for the expression syntax
enabled by MDX to [`mdast-util-from-markdown`][mdast-util-from-markdown] and
[`mdast-util-to-markdown`][mdast-util-to-markdown].
## When to use this
Use [`mdast-util-mdx`][mdast-util-mdx] if you want all of MDX / MDX.js.
Use this otherwise.
These tools are all rather low-level.
In most cases, you’d want to use [`remark-mdx`][remark-mdx] with remark instead.
When you are working with syntax trees and want all of MDX, use
[`mdast-util-mdx`][mdast-util-mdx] instead.
When working with `mdast-util-from-markdown`, you must combine this package with
[`micromark-extension-mdx-expression`][extension].
## Install
This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c):
Node 12+ is needed to use it and it must be `import`ed instead of `require`d.
This package is [ESM only][esm].
In Node.js (version 12.20+, 14.14+, or 16.0+), install with [npm][]:
[npm][]:
```sh

@@ -36,5 +58,19 @@ npm install mdast-util-mdx-expression

In Deno with [`esm.sh`][esmsh]:
```js
import {mdxExpressionFromMarkdown, mdxExpressionToMarkdown} from 'https://esm.sh/mdast-util-mdx-expression@1'
```
In browsers with [`esm.sh`][esmsh]:
```html
<script type="module">
import {mdxExpressionFromMarkdown, mdxExpressionToMarkdown} from 'https://esm.sh/mdast-util-mdx-expression@1?bundle'
</script>
```
## Use
Say we have an MDX.js file, `example.mdx`:
Say our document `example.mdx` contains:

@@ -49,6 +85,6 @@ ```mdx

And our module, `example.js`, looks as follows:
…and our module `example.js` looks as follows:
```js
import fs from 'node:fs'
import fs from 'node:fs/promises'
import * as acorn from 'acorn'

@@ -60,5 +96,5 @@ import {fromMarkdown} from 'mdast-util-from-markdown'

var doc = fs.readFileSync('example.mdx')
const doc = await fs.readFile('example.mdx')
var tree = fromMarkdown(doc, {
const tree = fromMarkdown(doc, {
extensions: [mdxExpression({acorn, addResult: true})],

@@ -70,3 +106,3 @@ mdastExtensions: [mdxExpressionFromMarkdown]

var out = toMarkdown(tree, {extensions: [mdxExpressionToMarkdown]})
const out = toMarkdown(tree, {extensions: [mdxExpressionToMarkdown]})

@@ -76,3 +112,3 @@ console.log(out)

Now, running `node example` yields (positional info removed for brevity):
…now running `node example.js` yields (positional info removed for brevity):

@@ -141,16 +177,17 @@ ```js

This package exports the identifiers `mdxExpressionFromMarkdown` and
`mdxExpressionToMarkdown`.
There is no default export.
### `mdxExpressionFromMarkdown`
### `mdxExpressionToMarkdown`
Extension for [`mdast-util-from-markdown`][mdast-util-from-markdown].
Support MDX (or MDX.js) expressions.
The exports are extensions, respectively for
[`mdast-util-from-markdown`][from-markdown] and
[`mdast-util-to-markdown`][to-markdown].
When using the [syntax extension with `addResult`][extension], nodes will have
a `data.estree` field set to an [ESTree][].
The indent of the value of `MDXFlowExpression`s is stripped.
### `mdxExpressionToMarkdown`
Extension for [`mdast-util-to-markdown`][mdast-util-to-markdown].
## Syntax tree

@@ -228,18 +265,42 @@

## Types
This package is fully typed with [TypeScript][].
It exports the additional types `MdxFlowExpression` and `MdxTextExpression`.
It also registers the node types with `@types/mdast`.
If you’re working with the syntax tree, make sure to import this utility
somewhere in your types, as that registers the new node types in the tree.
```js
/**
* @typedef {import('mdast-util-mdx-expression')}
*/
import {visit} from 'unist-util-visit'
/** @type {import('mdast').Root} */
const tree = getMdastNodeSomeHow()
visit(tree, (node) => {
// `node` can now be an expression node.
})
```
## Compatibility
Projects maintained by the unified collective are compatible with all maintained
versions of Node.js.
As of now, that is Node.js 12.20+, 14.14+, and 16.0+.
Our projects sometimes work with older versions, but this is not guaranteed.
This plugin works with `mdast-util-from-markdown` version 1+ and
`mdast-util-to-markdown` version 1+.
## Related
* [`remarkjs/remark`][remark]
— markdown processor powered by plugins
* `remarkjs/remark-mdx`
* [`remarkjs/remark-mdx`][remark-mdx]
— remark plugin to support MDX
* `remarkjs/remark-mdxjs`
— remark plugin to support MDX.js
* [`syntax-tree/mdast-util-from-markdown`][from-markdown]
— mdast parser using `micromark` to create mdast from markdown
* [`syntax-tree/mdast-util-to-markdown`][to-markdown]
— mdast serializer to create markdown from mdast
* [`syntax-tree/mdast-util-mdx`][mdast-util-mdx]
— mdast utility to support MDX
* [`micromark/micromark`][micromark]
— the smallest commonmark-compliant markdown parser that exists
* [`micromark/micromark-extension-mdx-expression`][extension]

@@ -250,4 +311,4 @@ — micromark extension to parse MDX expressions

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

@@ -293,2 +354,8 @@

[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[esmsh]: https://esm.sh
[typescript]: https://www.typescriptlang.org
[license]: license

@@ -298,22 +365,20 @@

[contributing]: https://github.com/syntax-tree/.github/blob/HEAD/contributing.md
[health]: https://github.com/syntax-tree/.github
[support]: https://github.com/syntax-tree/.github/blob/HEAD/support.md
[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md
[coc]: https://github.com/syntax-tree/.github/blob/HEAD/code-of-conduct.md
[support]: https://github.com/syntax-tree/.github/blob/main/support.md
[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
[mdast]: https://github.com/syntax-tree/mdast
[remark]: https://github.com/remarkjs/remark
[mdast-util-from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown
[from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown
[mdast-util-to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown
[to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown
[mdast-util-mdx]: https://github.com/syntax-tree/mdast-util-mdx
[micromark]: https://github.com/micromark/micromark
[extension]: https://github.com/micromark/micromark-extension-mdx-expression
[mdast-util-mdx]: https://github.com/syntax-tree/mdast-util-mdx
[estree]: https://github.com/estree/estree

@@ -326,1 +391,5 @@

[dfn-phrasing-content]: #phrasingcontent-mdx-expression
[remark-mdx]: https://mdxjs.com/packages/remark-mdx/
[mdx]: https://mdxjs.com
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc