mdast utility to remove empty paragraphs from a tree
npm install mdast-squeeze-paragraphs[![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]
[mdast][] utility to remove empty paragraphs.
* What is this?
* When should I use this?
* Install
* Use
* API
* squeezeParagraphs(tree)
* Types
* Compatibility
* Security
* Related
* Contribute
* License
This package is a utility that removes empty paragraphs, left over from other
operations, from the tree.
Paragraphs are considered empty if they do not contain non-whitespace
characters.
Probably never!
You should try to clean your trees yourself.
A plugin, [remark-squeeze-paragraphs][remark-squeeze-paragraphs], exists that
does the same but for [remark][].
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
``sh`
npm install mdast-squeeze-paragraphs
In Deno with [esm.sh][esmsh]:
`js`
import {squeezeParagraphs} from 'https://esm.sh/mdast-squeeze-paragraphs@6'
In browsers with [esm.sh][esmsh]:
`html`
`js
import {squeezeParagraphs} from 'mdast-squeeze-paragraphs'
import {u} from 'unist-builder'
const tree = u('root', [
u('paragraph', []),
u('paragraph', [u('text', 'Alpha')]),
u('paragraph', [u('text', ' ')])
])
squeezeParagraphs(tree)
console.dir(tree, {depth: null})
`
Yields:
`js`
{ type: 'root',
children:
[ { type: 'paragraph',
children: [ { type: 'text', value: 'Alpha' } ] } ] }
This package exports the identifier
[squeezeParagraphs][api-squeezeparagraphs].
There is no default export.
Remove empty paragraphs in tree.
###### Parameters
* tree ([Node][node])
— tree to change
###### Returns
Nothing (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-squeeze-paragraphs@^6, compatible with Node.js 16.
Use of mdast-squeeze-paragraphs does not involve [hast][] or user content
so there are no openings for [cross-site scripting (XSS)][xss] attacks.
* [remark-squeeze-paragraphs][remark-squeeze-paragraphs]mdast-util-compact
— remark plugin
*
— make a tree compact
See [contributing.md][contributing] in [syntax-tree/.github][health] forsupport.md`][support] for ways to get help.
ways to get started.
See [
This project has a [code of conduct][coc].
By interacting with this repository, organization, or community you agree to
abide by its terms.
[MIT][license] © Eugene Sharygin
[build-badge]: https://github.com/syntax-tree/mdast-squeeze-paragraphs/workflows/main/badge.svg
[build]: https://github.com/syntax-tree/mdast-squeeze-paragraphs/actions
[coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-squeeze-paragraphs.svg
[coverage]: https://codecov.io/github/syntax-tree/mdast-squeeze-paragraphs
[downloads-badge]: https://img.shields.io/npm/dm/mdast-squeeze-paragraphs.svg
[downloads]: https://www.npmjs.com/package/mdast-squeeze-paragraphs
[size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=mdast-squeeze-paragraphs
[size]: https://bundlejs.com/?q=mdast-squeeze-paragraphs
[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/syntax-tree/unist/discussions
[npm]: https://docs.npmjs.com/cli/install
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[esmsh]: https://esm.sh
[typescript]: https://www.typescriptlang.org
[license]: license
[health]: https://github.com/syntax-tree/.github
[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md
[support]: https://github.com/syntax-tree/.github/blob/main/support.md
[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
[hast]: https://github.com/syntax-tree/hast
[mdast]: https://github.com/syntax-tree/mdast
[node]: https://github.com/syntax-tree/mdast#node
[remark]: https://github.com/remarkjs/remark
[remark-squeeze-paragraphs]: https://github.com/remarkjs/remark-squeeze-paragraphs
[api-squeezeparagraphs]: #squeezeparagraphstree