Files
Agent-n8n/web_frontend/food-order-demo/node_modules/mdast-util-from-markdown
Yep_Q c3eb7125cc feat: 创建食品订单班演示系统基础框架
详细说明:
- 基于文旅订单班框架复制创建food-order-demo项目
- 修改端口配置为4174避免冲突
- 更新LandingPage为青莳轻食主题(绿色健康风格)
- 重新定义7个食品行业专业Agent:
  * 市场研究专家:轻食市场分析、客群画像
  * 营养配方师:营养成分配比、低卡高蛋白设计
  * 供应链管理专家:有机食材供应、溯源体系
  * 品牌策划师:品牌定位、店铺空间布局
  * 财务分析师:投资预算、ROI分析
  * 运营管理专家:运营流程、品控标准
  * 食品创业导师:中央协调、方案整合
- 创建专用启动脚本start.sh
- 验证系统可正常运行在端口4174
- 实现代码复用率90%,符合预期目标

影响文件: web_frontend/food-order-demo/
技术栈: React 18 + TypeScript + Tailwind CSS + Zustand
2025-09-28 10:32:44 +08:00
..

mdast-util-from-markdown

Build Coverage Downloads Size Sponsors Backers Chat

mdast utility that turns markdown into a syntax tree.

Contents

What is this?

This package is a utility that takes markdown input and turns it into an mdast syntax tree.

This utility uses micromark, which turns markdown into tokens, and then turns those tokens into nodes. This package is used inside remark-parse, which focusses on making it easier to transform content by abstracting these internals away.

When should I use this?

If you want to handle syntax trees manually, use this. When you just want to turn markdown into HTML, use micromark instead. For an easier time processing content, use the remark ecosystem instead.

You can combine this package with other packages to add syntax extensions to markdown. Notable examples that deeply integrate with this package are mdast-util-gfm, mdast-util-mdx, mdast-util-frontmatter, mdast-util-math, and mdast-util-directive.

Install

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

npm install mdast-util-from-markdown

In Deno with esm.sh:

import {fromMarkdown} from 'https://esm.sh/mdast-util-from-markdown@2'

In browsers with esm.sh:

<script type="module">
  import {fromMarkdown} from 'https://esm.sh/mdast-util-from-markdown@2?bundle'
</script>

Use

Say we have the following markdown file example.md:

## Hello, *World*!

…and our module example.js looks as follows:

import fs from 'node:fs/promises'
import {fromMarkdown} from 'mdast-util-from-markdown'

const doc = await fs.readFile('example.md')
const tree = fromMarkdown(doc)

console.log(tree)

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

{
  type: 'root',
  children: [
    {
      type: 'heading',
      depth: 2,
      children: [
        {type: 'text', value: 'Hello, '},
        {type: 'emphasis', children: [{type: 'text', value: 'World'}]},
        {type: 'text', value: '!'}
      ]
    }
  ]
}

API

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

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

fromMarkdown(value[, encoding][, options])

Turn markdown into a syntax tree.

Overloads
  • (value: Value, encoding: Encoding, options?: Options) => Root
  • (value: Value, options?: Options) => Root
Parameters
Returns

mdast tree (Root).

CompileContext

mdast compiler context (TypeScript type).

Fields
  • stack (Array<Node>) — stack of nodes
  • tokenStack (Array<[Token, OnEnterError | undefined]>) — stack of tokens
  • data (CompileData) — info passed around; key/value store
  • buffer (() => undefined) — capture some of the output data
  • resume (() => string) — stop capturing and access the output data
  • enter ((node: Node, token: Token, onError?: OnEnterError) => undefined) — enter a node
  • exit ((token: Token, onError?: OnExitError) => undefined) — exit a node
  • sliceSerialize ((token: Token, expandTabs?: boolean) => string) — get the string value of a token
  • config (Required<Extension>) — configuration

CompileData

Interface of tracked data (TypeScript type).

Type
interface CompileData { /* see code */ }

When working on extensions that use more data, extend the corresponding interface to register their types:

declare module 'mdast-util-from-markdown' {
  interface CompileData {
    // Register a new field.
    mathFlowInside?: boolean | undefined
  }
}

Encoding

Encodings supported by the Uint8Array class (TypeScript type).

See micromark for more info.

Type
type Encoding = 'utf8' | /* … */

Extension

Change how markdown tokens from micromark are turned into mdast (TypeScript type).

Properties

Handle

Handle a token (TypeScript type).

Parameters
Returns

Nothing (undefined).

OnEnterError

Handle the case where the right token is open, but it is closed (by the left token) or because we reached the end of the document (TypeScript type).

Parameters
Returns

Nothing (undefined).

OnExitError

Handle the case where the right token is open but it is closed by exiting the left token (TypeScript type).

Parameters
Returns

Nothing (undefined).

Options

Configuration (TypeScript type).

Properties

Token

Token from micromark (TypeScript type).

Type
type Token = { /* … */ }

Transform

Extra transform, to change the AST afterwards (TypeScript type).

Parameters
  • tree (Root) — tree to transform
Returns

New tree (Root) or nothing (in which case the current tree is used).

Value

Contents of the file (TypeScript type).

See micromark for more info.

Type
type Value = Uint8Array | string

List of extensions

Syntax

Markdown is parsed according to CommonMark. Extensions can add support for other syntax. If youre interested in extending markdown, more information is available in micromarks readme.

Syntax tree

The syntax tree is mdast.

Types

This package is fully typed with TypeScript. It exports the additional types CompileContext, CompileData, Encoding, Extension, Handle, OnEnterError, OnExitError, Options, Token, Transform, and Value.

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, mdast-util-from-markdown@^2, compatible with Node.js 16.

Security

As markdown is sometimes used for HTML, and improper use of HTML can open you up to a cross-site scripting (XSS) attack, use of mdast-util-from-markdown can also be unsafe. When going to HTML, use this utility in combination with hast-util-sanitize to make the tree safe.

Contribute

See contributing.md in syntax-tree/.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