parse, inspect, transform, and serialize content through syntax trees
npm install unified[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
unified lets you inspect and transform content with plugins.
* What is this?
* When should I use this?
* Install
* Use
* Overview
* API
* processor()
* processor.compiler
* [processor.data([key[, value]])](#processordatakey-value)
* processor.freeze()
* processor.parse(file)
* processor.parser
* [processor.process(file[, done])](#processorprocessfile-done)
* processor.processSync(file)
* [processor.run(tree[, file][, done])](#processorruntree-file-done)
* [processor.runSync(tree[, file])](#processorrunsynctree-file)
* [processor.stringify(tree[, file])](#processorstringifytree-file)
* [processor.use(plugin[, options])](#processoruseplugin-options)
* CompileResultMap
* CompileResults
* Compiler
* Data
* Parser
* Pluggable
* PluggableList
* Plugin
* PluginTuple
* Preset
* ProcessCallback
* Processor
* RunCallback
* Settings
* TransformCallback
* Transformer
* Types
* Compatibility
* Contribute
* Sponsor
* Acknowledgments
* License
unified is two things:
* unified is a collective of 500+ free and open source packages that work
with content as structured data (ASTs)
* unified (this project) is the core package, used in 1.3m+ projects on GH,
to process content with plugins
Several ecosystems are built on unified around different kinds of content.
Notably, [remark][] (markdown), [rehype][] (HTML), and [retext][] (natural
language).
These ecosystems can be connected together.
* for more about us, see [unifiedjs.com][site]
* for updates, see [@unifiedjs][twitter] on Twitter
* for questions, see [support][]
* to help, see [contribute][] and [sponsor][] below
In some cases, you are already using unified.
For example, itβs used in MDX, Gatsby, Docusaurus, etc.
In those cases, you donβt need to add unified yourself but you can include
plugins into those projects.
But the real fun (for some) is to get your hands dirty and work with syntax
trees and build with it yourself.
You can create those projects, or things like Prettier, or your own site
generator.
You can connect utilities together and make your own plugins that check for
problems and transform from one thing to another.
When you are dealing with one type of content (such as markdown), you can use
the main package of that ecosystem instead (so remark).
When you are dealing with different kinds of content (such as markdown and
HTML), itβs recommended to use unified itself, and pick and choose the plugins
you need.
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
``sh`
npm install unified
In Deno with [esm.sh][esmsh]:
`js`
import {unified} from 'https://esm.sh/unified@11'
In browsers with [esm.sh][esmsh]:
`html`
`js
import rehypeDocument from 'rehype-document'
import rehypeFormat from 'rehype-format'
import rehypeStringify from 'rehype-stringify'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'
const file = await unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeDocument, {title: 'ππ'})
.use(rehypeFormat)
.use(rehypeStringify)
.process('# Hello world!')
console.error(reporter(file))
console.log(String(file))
`
Yields:
`txt`
no issues found
`html`
Hello world!
unified is an interface for processing content with syntax trees.
Syntax trees are a representation of content understandable to programs.
Those programs, called [plugins][api-plugin], take these trees and inspect and
modify them.
To get to the syntax tree from text, there is a [parser][api-parser].
To get from that back to text, there is a [compiler][api-compiler].
This is the [process][api-process] of a processor.
`ascii
| ........................ process ........................... |
| .......... parse ... | ... run ... | ... stringify ..........|
+--------+ +----------+
Input ->- | Parser | ->- Syntax Tree ->- | Compiler | ->- Output
+--------+ | +----------+
X
|
+--------------+
| Transformers |
+--------------+
`
###### Processors
Processors process content.
On its own, unified (the root processor) doesnβt work.
It needs to be configured with plugins to work.
For example:
`js`
const processor = unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeDocument, {title: 'ππ'})
.use(rehypeFormat)
.use(rehypeStringify)
That processor can do different things.
It can:
* β¦parse markdown (parse)run
* β¦turn parsed markdown into HTML and format the HTML ()stringify
* β¦compile HTML ()process
* β¦do all of the above ()
Every processor implements another processor.
To create a processor, call another processor.
The new processor is configured to work the same as its ancestor.
But when the descendant processor is configured in the future it does not affect
the ancestral processor.
When processors are exposed from a module (for example, unified itself) they
should not be configured directly, as that would change their behavior for all
module users.
Those processors are [frozen][api-freeze] and they should be called to create
a new processor before they are used.
###### File
When processing a document, metadata is gathered about that document.
[vfile][vfile] is the file format that stores data, metadata, and messages
about files for unified and plugins.
There are several [utilities][vfile-utilities] for working with these files.
###### Syntax tree
The syntax trees used in unified are [unist][] nodes.
A tree represents a whole document and each [node][] is a plain JavaScript
object with a type field.
The semantics of nodes and the format of syntax trees is defined by other
projects:
* [esast][] β JavaScript
* [hast][] β HTML
* [mdast][] β markdown
* [nlcst][] β natural language
* [xast][] β XML
There are many utilities for working with trees listed in each aforementioned
project and maintained in the [syntax-tree][syntax-tree] organization.
These utilities are a level lower than unified itself and are building blocks
that can be used to make plugins.
###### Ecosystems
Around each syntax tree is an ecosystem that focusses on that particular kind
of content.
At their core, they parse text to a tree and compile that tree back to text.
They also provide plugins that work with the syntax tree, without requiring
that the end user has knowledge about that tree.
* [rehype][] (hast) β HTML
* [remark][] (mdast) β markdown
* [retext][] (nlcst) β natural language
###### Plugins
Each aforementioned ecosystem comes with a large set of plugins that you can
pick and choose from to do all kinds of things.
* [List of remark plugins][remark-plugins] Β·
[remarkjs/awesome-remark][awesome-remark] Β·remark-plugin
[ topic][topic-remark-plugin]rehypejs/awesome-rehype
* [List of rehype plugins][rehype-plugins] Β·
[][awesome-rehype] Β·rehype-plugin
[ topic][topic-rehype-plugin]retextjs/awesome-retext
* [List of retext plugins][retext-plugins] Β·
[][awesome-retext] Β·retext-plugin
[ topic][topic-retext-plugin]
There are also a few plugins that work in any ecosystem:
* unified-diff
β ignore unrelated messages in GitHub Actions and Travis
* unified-infer-git-meta
β infer metadata of a document from Git
* unified-message-control
β enable, disable, and ignore messages from content
###### Configuration
Processors are configured with [plugins][api-plugin] or with the
[data][api-data] method.
Most plugins also accept configuration through options.
See each pluginβs readme for more info.
###### Integrations
unified can integrate with the file system through
[unified-engine][unified-engine].unified-args
CLI apps can be created with [][unified-args], Gulp plugins withunified-engine-gulp
[][unified-engine-gulp], and language servers withunified-language-server
[][unified-language-server].unified-stream
A streaming interface can be created with [][unified-stream].
###### Programming interface
The [API][] provided by unified allows multiple files to be processed and
gives access to metadata (such as lint messages):
`js
import rehypeStringify from 'rehype-stringify'
import remarkParse from 'remark-parse'
import remarkPresetLintMarkdownStyleGuide from 'remark-preset-lint-markdown-style-guide'
import remarkRehype from 'remark-rehype'
import remarkRetext from 'remark-retext'
import retextEnglish from 'retext-english'
import retextEquality from 'retext-equality'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'
const file = await unified()
.use(remarkParse)
.use(remarkPresetLintMarkdownStyleGuide)
.use(remarkRetext, unified().use(retextEnglish).use(retextEquality))
.use(remarkRehype)
.use(rehypeStringify)
.process('Emphasis and _stress_, you guys!')
console.error(reporter(file))
console.log(String(file))
`
Yields:
`txt*
1:16-1:24 warning Emphasis should use as a marker emphasis-marker remark-lintguys
1:30-1:34 warning may be insensitive, use people, persons, folks instead gals-man retext-equality
β 2 warnings
`
` Emphasis and stress, you guys!html`
###### Transforming between ecosystems
Ecosystems can be combined in two modes.
Bridge mode transforms the tree from one format (origin) to another
(destination).
A different processor runs on the destination tree.
Afterwards, the original processor continues with the origin tree.
Mutate mode also transforms the syntax tree from one format to another.
But the original processor continues transforming the destination tree.
In the previous example (βProgramming interfaceβ), remark-retext is used inremark-rehype
bridge mode: the origin syntax tree is kept after retext is done; whereas is used in mutate mode: it sets a new syntax tree and discards
the origin tree.
The following plugins lets you combine ecosystems:
* [remark-retext][remark-retext] β turn markdown into natural languageremark-rehype
* [][remark-rehype] β turn markdown into HTMLrehype-retext
* [][rehype-retext] β turn HTML into natural languagerehype-remark
* [][rehype-remark] β turn HTML into markdown
This package exports the identifier unified (the root processor).
There is no default export.
Create a new processor.
###### Returns
New [unfrozen][api-freeze] processor ([processor][api-processor]).
This processor is configured to work the same as its ancestor.
When the descendant processor is configured in the future it does not affect
the ancestral processor.
###### Example
This example shows how a new processor can be created (from remark) and linked
to stdin(4) and stdout(4).
`js
import process from 'node:process'
import concatStream from 'concat-stream'
import {remark} from 'remark'
process.stdin.pipe(
concatStream(function (buf) {
process.stdout.write(String(remark().processSync(buf)))
})
)
`
Compiler to use ([Compiler][api-compiler], optional).
Configure the processor with info available to all plugins.
Information is stored in an object.
Typically, options can be given to a specific plugin, but sometimes it makes
sense to have information shared with several plugins.
For example, a list of HTML elements that are self-closing, which is needed
during all [phases][overview].
> π Note: setting information cannot occur on [frozen][api-freeze]
> processors.
> Call the processor first to create a new unfrozen processor.
> π Note: to register custom data in TypeScript, augment the
> [Data][api-data] interface.
###### Signatures
* processor = processor.data(key, value)processor = processor.data(dataset)
* value = processor.data(key)
* dataset = processor.data()
*
###### Parameters
* key ([keyof Data][api-data], optional) β field to getvalue
* ([Data[key]][api-data]) β value to setvalues
* ([Data][api-data]) β values to set
###### Returns
The current processor when setting ([processor][api-processor]), the value atkey when getting ([Data[key]][api-data]), or the entire dataset whenData
getting without key ([][api-data]).
###### Example
This example show how to get and set info:
`js
import {unified} from 'unified'
const processor = unified().data('alpha', 'bravo')
processor.data('alpha') // => 'bravo'
processor.data() // => {alpha: 'bravo'}
processor.data({charlie: 'delta'})
processor.data() // => {charlie: 'delta'}
`
Freeze a processor.
Frozen processors are meant to be extended and not to be configured directly.
When a processor is frozen it cannot be unfrozen.
New processors working the same way can be created by calling the processor.
Itβs possible to freeze processors explicitly by calling .freeze()..parse()
Processors freeze automatically when , .run(), .runSync(),.stringify(), .process(), or .processSync() are called.
###### Returns
The current processor ([processor][api-processor]).
###### Example
This example, index.js, shows how rehype prevents extensions to itself:
`js
import rehypeParse from 'rehype-parse'
import rehypeStringify from 'rehype-stringify'
import {unified} from 'unified'
export const rehype = unified().use(rehypeParse).use(rehypeStringify).freeze()
`
That processor can be used and configured like so:
`js
import {rehype} from 'rehype'
import rehypeFormat from 'rehype-format'
// β¦
rehype()
.use(rehypeFormat)
// β¦
`
A similar looking example is broken as operates on the frozen interface.
If this behavior was allowed it would result in unexpected behavior so an error
is thrown.
This is not valid:
`js
import {rehype} from 'rehype'
import rehypeFormat from 'rehype-format'
// β¦
rehype
.use(rehypeFormat)
// β¦
`
Yields:
`txt
~/node_modules/unified/index.js:426
throw new Error(
^
Error: Cannot call use on a frozen processor.processor()
Create a new processor first, by calling it: use instead of processor.`
at assertUnfrozen (~/node_modules/unified/index.js:426:11)
at Function.use (~/node_modules/unified/index.js:165:5)
β¦
Parse text to a syntax tree.
> π Note: parse freezes the processor if not already
> [frozen][api-freeze].
> π Note: parse performs the [parse phase][overview], not the run phase
> or other phases.
###### Parameters
* file ([Compatible][vfile-compatible]) β file to parse; typicallystring
or [VFile][vfile]; any value accepted as x in new VFile(x)
###### Returns
Syntax tree representing file ([Node][node]).
###### Example
This example shows how parse can be used to create a tree from a file.
`js
import remarkParse from 'remark-parse'
import {unified} from 'unified'
const tree = unified().use(remarkParse).parse('# Hello world!')
console.log(tree)
`
Yields:
`js`
{
type: 'root',
children: [
{type: 'heading', depth: 1, children: [Array], position: [Object]}
],
position: {
start: {line: 1, column: 1, offset: 0},
end: {line: 1, column: 15, offset: 14}
}
}
Parser to use ([Parser][api-parser], optional).
Process the given file as configured on the processor.
> π Note: process freezes the processor if not already
> [frozen][api-freeze].
> π Note: process performs the [parse, run, and stringify
> phases][overview].
###### Signatures
* processor.process(file, done)Promise
*
###### Parameters
* file ([Compatible][vfile-compatible], optional) β file; typicallystring
or [VFile][vfile]; any value accepted as x in new VFile(x)done
* ([ProcessCallback][api-process-callback], optional) β callback
###### Returns
Nothing if done is given (undefined).Promise
Otherwise a promise, rejected with a fatal error or resolved with the
processed file ([][vfile]).
The parsed, transformed, and compiled value is available at file.value (see
note).
> π Note: unified typically compiles by serializing: most
> compilers return string (or Uint8Array).rehype-react
> Some compilers, such as the one configured with
> [][rehype-react], return other values (in this case, a ReactCompileResultMap
> tree).
> If youβre using a compiler that doesnβt serialize, expect different result
> values.
>
> To register custom results in TypeScript, add them to
> [][api-compile-result-map].
###### Example
This example shows how process can be used to process a file:
`js
import rehypeDocument from 'rehype-document'
import rehypeFormat from 'rehype-format'
import rehypeStringify from 'rehype-stringify'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import {unified} from 'unified'
const file = await unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeDocument, {title: 'ππ'})
.use(rehypeFormat)
.use(rehypeStringify)
.process('# Hello world!')
console.log(String(file))
`
Yields:
`html`
Hello world!
Process the given file as configured on the processor.
An error is thrown if asynchronous transforms are configured.
> π Note: processSync freezes the processor if not already
> [frozen][api-freeze].
> π Note: processSync performs the [parse, run, and stringify
> phases][overview].
###### Parameters
* file ([Compatible][vfile-compatible], optional) β file; typicallystring
or [VFile][vfile]; any value accepted as x in new VFile(x)
###### Returns
The processed file ([VFile][vfile]).
The parsed, transformed, and compiled value is available at file.value (see
note).
> π Note: unified typically compiles by serializing: most
> compilers return string (or Uint8Array).rehype-react
> Some compilers, such as the one configured with
> [][rehype-react], return other values (in this case, a ReactCompileResultMap
> tree).
> If youβre using a compiler that doesnβt serialize, expect different result
> values.
>
> To register custom results in TypeScript, add them to
> [][api-compile-result-map].
###### Example
This example shows how processSync can be used to process a file, if all
transformers are synchronous.
`js
import rehypeDocument from 'rehype-document'
import rehypeFormat from 'rehype-format'
import rehypeStringify from 'rehype-stringify'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import {unified} from 'unified'
const processor = unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeDocument, {title: 'ππ'})
.use(rehypeFormat)
.use(rehypeStringify)
console.log(String(processor.processSync('# Hello world!')))
`
Yields:
`html`
Hello world!
Run [transformers][api-transformer] on a syntax tree.
> π Note: run freezes the processor if not already
> [frozen][api-freeze].
> π Note: run performs the [run phase][overview], not other phases.
###### Signatures
* processor.run(tree, done)processor.run(tree, file, done)
* Promise
*
###### Parameters
* tree ([Node][node]) β tree to transform and inspectfile
* ([Compatible][vfile-compatible], optional) β file associatednode
with ; any value accepted as x in new VFile(x)done
* ([RunCallback][api-run-callback], optional) β callback
###### Returns
Nothing if done is given (undefined).Promise
Otherwise, a promise rejected with a fatal error or resolved with the
transformed tree ([][node]).
###### Example
This example shows how run can be used to transform a tree:
`js
import remarkReferenceLinks from 'remark-reference-links'
import {unified} from 'unified'
import {u} from 'unist-builder'
const tree = u('root', [
u('paragraph', [
u('link', {href: 'https://example.com'}, [u('text', 'Example Domain')])
])
])
const changedTree = await unified().use(remarkReferenceLinks).run(tree)
console.log(changedTree)
`
Yields:
`js`
{
type: 'root',
children: [
{type: 'paragraph', children: [Array]},
{type: 'definition', identifier: '1', title: '', url: undefined}
]
}
Run [transformers][api-transformer] on a syntax tree.
An error is thrown if asynchronous transforms are configured.
> π Note: runSync freezes the processor if not already
> [frozen][api-freeze].
> π Note: runSync performs the [run phase][overview], not other phases.
###### Parameters
* tree ([Node][node]) β tree to transform and inspectfile
* ([Compatible][vfile-compatible], optional) β file associatednode
with ; any value accepted as x in new VFile(x)
###### Returns
Transformed tree ([Node][node]).
Compile a syntax tree.
> π Note: stringify freezes the processor if not already
> [frozen][api-freeze].
> π Note: stringify performs the [stringify phase][overview], not the run
> phase or other phases.
###### Parameters
* tree ([Node][node]) β tree to compilefile
* ([Compatible][vfile-compatible], optional) β file associatednode
with ; any value accepted as x in new VFile(x)
###### Returns
Textual representation of the tree (Uint8Array or string, see note).
> π Note: unified typically compiles by serializing: most compilers
> return string (or Uint8Array).rehype-react
> Some compilers, such as the one configured with
> [][rehype-react], return other values (in this case, aCompileResultMap
> React tree).
> If youβre using a compiler that doesnβt serialize, expect different
> result values.
>
> To register custom results in TypeScript, add them to
> [][api-compile-result-map].
###### Example
This example shows how stringify can be used to serialize a syntax tree:
`js
import {h} from 'hastscript'
import rehypeStringify from 'rehype-stringify'
import {unified} from 'unified'
const tree = h('h1', 'Hello world!')
const document = unified().use(rehypeStringify).stringify(tree)
console.log(document)
`
Yields:
`html`Hello world!
Configure the processor to use a plugin, a list of usable values, or a preset.
If the processor is already using a plugin, the previous plugin configuration
is changed based on the options that are passed in.
In other words, the plugin is not added a second time.
> π Note: use cannot be called on [frozen][api-freeze] processors.
> Call the processor first to create a new unfrozen processor.
###### Signatures
* processor.use(preset?)processor.use(list)
* processor.use(plugin[, ...parameters])
*
###### Parameters
* preset ([Preset][api-preset]) β plugins and settingslist
* ([PluggableList][api-pluggable-list]) β list of usable thingsplugin
* ([Plugin][api-plugin]) β pluginparameters
* (Array) β configuration for plugin, typically a
single options object
###### Returns
Current processor ([processor][api-processor]).
###### Example
There are many ways to pass plugins to .use().
This example gives an overview:
`js
import {unified} from 'unified'
unified()
// Plugin with options:
.use(pluginA, {x: true, y: true})
// Passing the same plugin again merges configuration (to {x: true, y: false, z: true}):`
.use(pluginA, {y: false, z: true})
// Plugins:
.use([pluginB, pluginC])
// Two plugins, the second with options:
.use([pluginD, [pluginE, {}]])
// Preset with plugins and settings:
.use({plugins: [pluginF, [pluginG, {}]], settings: {position: false}})
// Settings only:
.use({settings: {position: false}})
Interface of known results from compilers (TypeScript type).
Normally, compilers result in text ([Value][vfile-value] of vfile).rehype-react
When you compile to something else, such as a React node (as in,), you can augment this interface to include that type.
`ts
import type {ReactNode} from 'somewhere'
declare module 'unified' {
interface CompileResultMap {
// Register a new result (value is used, key should match it).
ReactNode: ReactNode
}
}
export {} // You may not need this, but it makes sure the file is a module.
`
Use [CompileResults][api-compile-results] to access the values.
###### Type
`tsValue
interface CompileResultMap {
// Note: if from VFile is changed, this should too.`
Uint8Array: Uint8Array
string: string
}
Acceptable results from compilers (TypeScript type).
To register custom results, add them to
[CompileResultMap][api-compile-result-map].
###### Type
`ts`
type CompileResults = CompileResultMap[keyof CompileResultMap]
A compiler handles the compiling of a syntax tree to something else
(in most cases, text) (TypeScript type).
It is used in the stringify phase and called with a [Node][node]VFile
and [][vfile] representation of the document to compile.string
It should return the textual representation of the given tree (typically).
> π Note: unified typically compiles by serializing: most compilers
> return string (or Uint8Array).rehype-react
> Some compilers, such as the one configured with
> [][rehype-react], return other values (in this case, aCompileResultMap
> React tree).
> If youβre using a compiler that doesnβt serialize, expect different
> result values.
>
> To register custom results in TypeScript, add them to
> [][api-compile-result-map].
###### Type
`ts`
type Compiler<
Tree extends Node = Node,
Result extends CompileResults = CompileResults
> = (tree: Tree, file: VFile) => Result
Interface of known data that can be supported by all plugins (TypeScript type).
Typically, options can be given to a specific plugin, but sometimes it makes
sense to have information shared with several plugins.
For example, a list of HTML elements that are self-closing, which is needed
during all phases.
To type this, do something like:
`ts
declare module 'unified' {
interface Data {
htmlVoidElements?: Array
}
}
export {} // You may not need this, but it makes sure the file is a module.
`
###### Type
`ts`
interface Data {
settings?: Settings | undefined
}
See [Settings][api-settings] for more info.
A parser handles the parsing of text to a syntax tree (TypeScript type).
It is used in the parse phase and is called with a string andVFile
[][vfile] of the document to parse.Node
It must return the syntax tree representation of the given file
([][node]).
###### Type
`ts`
type Parser
Union of the different ways to add plugins and settings (TypeScript type).
###### Type
`ts`
type Pluggable =
| Plugin
| PluginTuple
| Preset
See [Plugin][api-plugin], [PluginTuple][api-plugin-tuple],Preset
and [][api-preset] for more info.
List of plugins and presets (TypeScript type).
###### Type
`ts`
type PluggableList = Array
See [Pluggable][api-pluggable] for more info.
Single plugin (TypeScript type).
Plugins configure the processors they are applied on in the following ways:
* they change the processor, such as the parser, the compiler, or by
configuring data
* they specify how to handle trees and files
In practice, they are functions that can receive options and configure the
processor (this).
> π Note: plugins are called when the processor is frozen, not when they
> are applied.
###### Type
`ts`
type Plugin<
PluginParameters extends unknown[] = [],
Input extends Node | string | undefined = Node,
Output = Input
> = (
this: Processor,
...parameters: PluginParameters
) => Input extends string // Parser.
? Output extends Node | undefined
? undefined | void
: never
: Output extends CompileResults // Compiler.
? Input extends Node | undefined
? undefined | void
: never
: // Inspect/transform.
| Transformer<
Input extends Node ? Input : Node,
Output extends Node ? Output : Node
>
| undefined
| void
See [Transformer][api-transformer] for more info.
###### Example
move.js:
`js.
/**
* @typedef Options
* Configuration (required).
* @property {string} extname
* File extension to use (must start with ).
*/
/* @type {import('unified').Plugin<[Options]>} /
export function move(options) {
if (!options || !options.extname) {
throw new Error('Missing options.extname')
}
return function (_, file) {
if (file.extname && file.extname !== options.extname) {
file.extname = options.extname
}
}
}
`
example.md:
`markdown`Hello, world!
example.js:
`js
import rehypeStringify from 'rehype-stringify'
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import {read, write} from 'to-vfile'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'
import {move} from './move.js'
const file = await unified()
.use(remarkParse)
.use(remarkRehype)
.use(move, {extname: '.html'})
.use(rehypeStringify)
.process(await read('example.md'))
console.error(reporter(file))
await write(file) // Written to example.html.`
Yields:
`txt`
example.md: no issues found
β¦and in example.html:
`html`Hello, world!
Tuple of a plugin and its configuration (TypeScript type).
The first item is a plugin, the rest are its parameters.
###### Type
`ts`
type PluginTuple<
TupleParameters extends unknown[] = [],
Input extends Node | string | undefined = undefined,
Output = undefined
> = [
plugin: Plugin
...parameters: TupleParameters
]
See [Plugin][api-plugin] for more info.
Sharable configuration (TypeScript type).
They can contain plugins and settings.
###### Fields
* plugins ([PluggableList][api-pluggable-list], optional)settings
β list of plugins and presets
* ([Data][api-data], optional)
β shared settings for parsers and compilers
###### Example
preset.js:
`js
import remarkCommentConfig from 'remark-comment-config'
import remarkLicense from 'remark-license'
import remarkPresetLintConsistent from 'remark-preset-lint-consistent'
import remarkPresetLintRecommended from 'remark-preset-lint-recommended'
import remarkToc from 'remark-toc'
/* @type {import('unified').Preset} /
const preset = {
plugins: [
remarkPresetLintRecommended,
remarkPresetLintConsistent,
remarkCommentConfig,
[remarkToc, {maxDepth: 3, tight: true}],
remarkLicense
]
settings: {bullet: '', emphasis: '', fences: true},
}
export default preset
`
example.md:
`markdownHello, world!
_Emphasis_ and importance.
example.js:`js
import {remark} from 'remark'
import {read, write} from 'to-vfile'
import {reporter} from 'vfile-reporter'
import preset from './preset.js'const file = await remark()
.use(preset)
.process(await read('example.md'))
console.error(reporter(file))
await write(file)
`Yields:
`txt
example.md: no issues found
`example.md now contains:`markdown
Hello, world!
Emphasis and importance.
Table of contents
API
License
MIT Β© Titus Wormer
`$3
Callback called when the process is done (TypeScript type).
Called with either an error or a result.
###### Parameters
*
error (Error, optional)
β fatal error
* file ([VFile][vfile], optional)
β processed file###### Returns
Nothing (
undefined).###### Example
This example shows how
process can be used to process a file with a callback.`js
import remarkGithub from 'remark-github'
import remarkParse from 'remark-parse'
import remarkStringify from 'remark-stringify'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'unified()
.use(remarkParse)
.use(remarkGithub)
.use(remarkStringify)
.process('@unifiedjs', function (error, file) {
if (error) throw error
if (file) {
console.error(reporter(file))
console.log(String(file))
}
})
`Yields:
`txt
no issues found
``markdown
@unifiedjs
`$3
Type of a [
processor][api-processor] (TypeScript type).$3
Callback called when transformers are done (TypeScript type).
Called with either an error or results.
###### Parameters
*
error (Error, optional)
β fatal error
* tree ([Node][node], optional)
β transformed tree
* file ([VFile][vfile], optional)
β file###### Returns
Nothing (
undefined).$3
Interface of known extra options, that can be supported by parser and
compilers.
This exists so that users can use packages such as
remark, which configure
both parsers and compilers (in this case remark-parse and
remark-stringify), and still provide options for them.When you make parsers or compilers, that could be packaged up together, you
should support
this.data('settings') as input and merge it with explicitly
passed options.
Then, to type it, using remark-stringify as an example, do something like:`ts
declare module 'unified' {
interface Settings {
bullet: '*' | '+' | '-'
// β¦
}
}export {} // You may not need this, but it makes sure the file is a module.
`###### Type
`ts
interface Settings {}
`$3
Callback passed to transforms (TypeScript type).
If the signature of a
transformer accepts a third argument, the transformer
may perform asynchronous operations, and must call it.###### Parameters
*
error (Error, optional)
β fatal error to stop the process
* tree ([Node][node], optional)
β new, changed, tree
* file ([VFile][vfile], optional)
β new, changed, file###### Returns
Nothing (
undefined).$3
Transformers handle syntax trees and files (TypeScript type).
They are functions that are called each time a syntax tree and file are
passed through the run phase.
When an error occurs in them (either because itβs thrown, returned,
rejected, or passed to
next), the process stops.The run phase is handled by [
trough][trough], see its documentation for
the exact semantics of these functions.> π Note: you should likely ignore
next: donβt accept it.
> it supports callback-style async work.
> But promises are likely easier to reason about.###### Type
`ts
type Transformer<
Input extends Node = Node,
Output extends Node = Input
> = (
tree: Input,
file: VFile,
next: TransformCallback`Types
This package is fully typed with [TypeScript][].
It exports the additional types
[
CompileResultMap][api-compile-result-map],
[CompileResults][api-compile-results],
[Compiler][api-compiler],
[Data][api-data],
[Parser][api-parser],
[Pluggable][api-pluggable],
[PluggableList][api-pluggable-list],
[Plugin][api-plugin],
[PluginTuple][api-plugin-tuple],
[Preset][api-preset],
[ProcessCallback][api-process-callback],
[Processor][api-processor],
[RunCallback][api-run-callback],
[Settings][api-settings],
[TransformCallback][api-transform-callback],
and [Transformer][api-transformer]For TypeScript to work, it is particularly important to type your plugins
correctly.
We strongly recommend using the
Plugin type with its generics and to use the
node types for the syntax trees provided by our packages (as in,
[@types/hast][types-hast], [@types/mdast][types-mdast],
[@types/nlcst][types-nlcst]).`js
/**
* @typedef {import('hast').Root} HastRoot
* @typedef {import('mdast').Root} MdastRoot
*//**
* @typedef Options
* Configuration (optional).
* @property {boolean | null | undefined} [someField]
* Some option (optional).
*/
// To type options:
/* @type {import('unified').Plugin<[(Options | null | undefined)?]>} /
export function myPluginAcceptingOptions(options) {
const settings = options || {}
//
settings is now Options.
}// To type a plugin that works on a certain tree, without options:
/* @type {import('unified').Plugin<[], MdastRoot>} /
export function myRemarkPlugin() {
return function (tree, file) {
//
tree is MdastRoot.
}
}// To type a plugin that transforms one tree into another:
/* @type {import('unified').Plugin<[], MdastRoot, HastRoot>} /
export function remarkRehype() {
return function (tree) {
//
tree is MdastRoot.
// Result must be HastRoot.
}
}// To type a plugin that defines a parser:
/* @type {import('unified').Plugin<[], string, MdastRoot>} /
export function remarkParse(options) {}
// To type a plugin that defines a compiler:
/* @type {import('unified').Plugin<[], HastRoot, string>} /
export function rehypeStringify(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,
unified@^11, compatible
with Node.js 16.Contribute
See [
contributing.md][contributing] in [unifiedjs/.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, organization, or community you agree to
abide by its terms.
For info on how to submit a security report, see our
[security policy][security].
Sponsor
Support this effort and give back by sponsoring on [OpenCollective][collective]!
Vercel

Motif

HashiCorp

American Express

GitBook

Gatsby

Netlify

Coinbase

ThemeIsle

Expo

Boost Note

Markdown Space

Holloway

You?
Acknowledgments
Preliminary work for unified was done [in 2014][preliminary] for
[retext][] and inspired by [
ware][ware].
Further incubation happened in [remark][].
The project was finally [externalised][] in 2015 and [published][] as unified.
The project was authored by @wooorm.Although
unified since moved its plugin architecture to [trough][trough],
thanks to @calvinfo,
@ianstormtaylor, and others for their
work on [ware`][ware], as it was a huge initial inspiration.[MIT][license] Β© [Titus Wormer][author]
[logo]: https://raw.githubusercontent.com/unifiedjs/unified/93862e5/logo.svg?sanitize=true
[build-badge]: https://github.com/unifiedjs/unified/workflows/main/badge.svg
[build]: https://github.com/unifiedjs/unified/actions
[coverage-badge]: https://img.shields.io/codecov/c/github/unifiedjs/unified.svg
[coverage]: https://codecov.io/github/unifiedjs/unified
[downloads-badge]: https://img.shields.io/npm/dm/unified.svg
[downloads]: https://www.npmjs.com/package/unified
[size-badge]: https://img.shields.io/bundlejs/size/unified
[size]: https://bundlejs.com/?q=unified
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
[collective]: https://opencollective.com/unified
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
[chat]: https://github.com/unifiedjs/unified/discussions
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[esmsh]: https://esm.sh
[typescript]: https://www.typescriptlang.org
[health]: https://github.com/unifiedjs/.github
[contributing]: https://github.com/unifiedjs/.github/blob/main/contributing.md
[support]: https://github.com/unifiedjs/.github/blob/main/support.md
[coc]: https://github.com/unifiedjs/.github/blob/main/code-of-conduct.md
[security]: https://github.com/unifiedjs/.github/blob/main/security.md
[license]: license
[author]: https://wooorm.com
[npm]: https://docs.npmjs.com/cli/install
[site]: https://unifiedjs.com
[twitter]: https://twitter.com/unifiedjs
[rehype]: https://github.com/rehypejs/rehype
[remark]: https://github.com/remarkjs/remark
[retext]: https://github.com/retextjs/retext
[syntax-tree]: https://github.com/syntax-tree
[esast]: https://github.com/syntax-tree/esast
[hast]: https://github.com/syntax-tree/hast
[mdast]: https://github.com/syntax-tree/mdast
[nlcst]: https://github.com/syntax-tree/nlcst
[unist]: https://github.com/syntax-tree/unist
[xast]: https://github.com/syntax-tree/xast
[unified-engine]: https://github.com/unifiedjs/unified-engine
[unified-args]: https://github.com/unifiedjs/unified-args
[unified-engine-gulp]: https://github.com/unifiedjs/unified-engine-gulp
[unified-language-server]: https://github.com/unifiedjs/unified-language-server
[unified-stream]: https://github.com/unifiedjs/unified-stream
[rehype-remark]: https://github.com/rehypejs/rehype-remark
[rehype-retext]: https://github.com/rehypejs/rehype-retext
[remark-rehype]: https://github.com/remarkjs/remark-rehype
[remark-retext]: https://github.com/remarkjs/remark-retext
[node]: https://github.com/syntax-tree/unist#node
[vfile]: https://github.com/vfile/vfile
[vfile-compatible]: https://github.com/vfile/vfile#compatible
[vfile-value]: https://github.com/vfile/vfile#value
[vfile-utilities]: https://github.com/vfile/vfile#list-of-utilities
[rehype-react]: https://github.com/rehypejs/rehype-react
[trough]: https://github.com/wooorm/trough#function-fninput-next
[rehype-plugins]: https://github.com/rehypejs/rehype/blob/main/doc/plugins.md#list-of-plugins
[remark-plugins]: https://github.com/remarkjs/remark/blob/main/doc/plugins.md#list-of-plugins
[retext-plugins]: https://github.com/retextjs/retext/blob/main/doc/plugins.md#list-of-plugins
[awesome-rehype]: https://github.com/rehypejs/awesome-rehype
[awesome-remark]: https://github.com/remarkjs/awesome-remark
[awesome-retext]: https://github.com/retextjs/awesome-retext
[topic-rehype-plugin]: https://github.com/topics/rehype-plugin
[topic-remark-plugin]: https://github.com/topics/remark-plugin
[topic-retext-plugin]: https://github.com/topics/retext-plugin
[types-hast]: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast
[types-mdast]: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast
[types-nlcst]: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nlcst
[preliminary]: https://github.com/retextjs/retext/commit/8fcb1f
[externalised]: https://github.com/remarkjs/remark/commit/9892ec
[published]: https://github.com/unifiedjs/unified/commit/2ba1cf
[ware]: https://github.com/segmentio/ware
[api]: #api
[contribute]: #contribute
[overview]: #overview
[sponsor]: #sponsor
[api-compile-result-map]: #compileresultmap
[api-compile-results]: #compileresults
[api-compiler]: #compiler
[api-data]: #data
[api-freeze]: #processorfreeze
[api-parser]: #parser
[api-pluggable]: #pluggable
[api-pluggable-list]: #pluggablelist
[api-plugin]: #plugin
[api-plugin-tuple]: #plugintuple
[api-preset]: #preset
[api-process]: #processorprocessfile-done
[api-process-callback]: #processcallback
[api-processor]: #processor
[api-run-callback]: #runcallback
[api-settings]: #settings
[api-transform-callback]: #transformcallback
[api-transformer]: #transformer