Back to Mdx

Packages

docs/packages/index.mdx

3.1.1994 B
Original Source

{ /**

  • @import {Item} from '../_component/sort.js' */

/**

  • @typedef Props
  • @property {Item} navigationTree */ }

import assert from 'node:assert/strict' import {NavigationGroup} from '../_component/nav.jsx'

export const info = { author: [{name: 'MDX Contributors'}], modified: new Date('2024-07-04'), published: new Date('2021-11-01') } export const navSortSelf = 3

Packages

This index lists the packages that are maintained in our monorepo. They include @mdx-js/mdx, which is our core compiler; remark-mdx, which is the remark plugin to support the MDX syntax; and several integrations with bundlers and frontend frameworks.

{ (function () { const navigationTree = props.navigationTree const category = navigationTree.children.find(function (item) { return item.name === '/packages/' }) assert(category)

return (
  <nav>
    <NavigationGroup items={category.children} includeDescription />
  </nav>
)

})() }