Package Exports
- mdast-util-compact
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mdast-util-compact) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mdast-util-compact
mdast utility to make trees compact: collapse adjacent text nodes and blockquotes.
Install
This package is ESM only:
Node 12+ is needed to use it and it must be import
ed instead of require
d.
npm:
npm install mdast-util-compact
Use
import {u} from 'unist-builder'
import {compact} from 'mdast-util-compact'
var tree = u('strong', [u('text', 'alpha'), u('text', ' '), u('text', 'bravo')])
compact(tree)
console.log(tree)
Yields:
{
type: 'strong',
children: [ { type: 'text', value: 'alpha bravo' } ]
}
API
This package exports the following identifiers: compact
.
There is no default export.
compact(tree)
Walk the tree and collapse nodes. Combines adjacent texts and collapses blockquotes.
Handles positional information properly.
Returns
The given tree
.
Security
Use of mdast-util-compact
does not involve hast or user content
so there are no openings for cross-site scripting (XSS) attacks.
Related
mdast-squeeze-paragraphs
— remove empty paragraphs
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.