mdast utility to make trees compact by collapsing adjacent text nodes and blockquotes.
This package is a utility that lets you make a tree, after changes, more similar to how it would be parsed.
Probably never! You should try and keep your trees clean yourself.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install mdast-util-compact
In Deno with esm.sh
:
import {compact} from 'https://esm.sh/mdast-util-compact@5'
In browsers with esm.sh
:
<script type="module"> import {compact} from 'https://esm.sh/mdast-util-compact@5?bundle' </script>
import {u} from 'unist-builder' import {compact} from 'mdast-util-compact' const 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' } ] }
This package exports the identifier compact
. There is no default export.
Make an mdast tree compact by merging adjacent text nodes and block quotes.
tree
(Node
) — tree to changeNothing (undefined
).
This package is fully typed with TypeScript. It exports no additional types.
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-compact@^5
, compatible with Node.js 16.
Use of mdast-util-compact
does not involve hast or user content so there are no openings for cross-site scripting (XSS) attacks.
mdast-squeeze-paragraphs
— remove empty paragraphsSee 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.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4