mdx-formatter
GitHub リポジトリ

検索したい単語を入力

いつでも検索バーを開ける

これは旧バージョンのドキュメントです。最新バージョンを見る

API Reference

このページはまだ翻訳されていません。原文のまま表示しています。

CLI options and programmatic API reference for mdx-formatter

CLI Options

OptionDescription
-w, --writeWrite formatted files in place
-c, --checkCheck if files need formatting (for CI)
--config <path>Path to config file
--ignore <patterns>Comma-separated patterns to ignore (default: node_modules/**,dist/**,build/**,.git/**,worktrees/**)

The --ignore patterns are merged with exclude patterns from the config file.

format(content, options?)

Format markdown/MDX content.

  • content (string) - Content to format

  • options.config (string) - Path to config file

  • options.settings (object) - Direct settings overrides (see Options Reference)

  • Returns Promise<string> - Formatted content (returns original on error)

The exclude config option is CLI-only. When using the programmatic API (format, formatFile, checkFile), handle file filtering in your own code.

formatFile(filePath, options?)

Format a file and write it back if changed.

  • filePath (string) - Path to the file

  • options - Same as format()

  • Returns Promise<boolean> - true if file was changed

checkFile(filePath, options?)

Check if a file needs formatting without modifying it.

  • filePath (string) - Path to the file

  • options - Same as format()

  • Returns Promise<boolean> - true if file needs formatting

detectMdx(content)

Check if content is likely MDX (has imports, exports, JSX components, or frontmatter).

  • content (string) - Content to check

  • Returns boolean