mdast utility to remove empty paragraphs from a tree.
Paragraphs are considered empty if they do not contain non-whitespace characters.
npm:
npm install mdast-squeeze-paragraphs
var u = require('unist-builder')
var squeezeParagraphs = require('mdast-squeeze-paragraphs')
var tree = u('root', [
u('paragraph', []),
u('paragraph', [u('text', 'Alpha')]),
u('paragraph', [u('text', ' ')])
])
squeezeParagraphs(tree)
console.dir(tree, {depth: null})
Yields:
{ type: 'root',
children:
[ { type: 'paragraph',
children: [ { type: 'text', value: 'Alpha' } ] } ] }
Modifies tree in-place.
Returns tree
.
remark-squeeze-paragraphs
— remark plugin wrapper
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, organisation, or community you agree to abide by its terms.
MIT © Eugene Sharygin