mirror of
https://github.com/nodejs/node.git
synced 2025-05-22 08:35:19 +00:00
![]() PR-URL: https://github.com/nodejs/node/pull/27670 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> |
||
---|---|---|
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
unist-util-remove-position
unist utility to remove position
s from tree.
Install
npm:
npm install unist-util-remove-position
Usage
var remark = require('remark')
var removePosition = require('unist-util-remove-position')
var tree = remark().parse('Some _emphasis_, **importance**, and `code`.')
removePosition(tree, true)
console.dir(tree, {depth: null})
Yields:
{
type: 'root',
children: [
{
type: 'paragraph',
children: [
{ type: 'text', value: 'Some ' },
{
type: 'emphasis',
children: [ { type: 'text', value: 'emphasis' } ]
},
{ type: 'text', value: ', ' },
{
type: 'strong',
children: [ { type: 'text', value: 'importance' } ]
},
{ type: 'text', value: ', and ' },
{ type: 'inlineCode', value: 'code' },
{ type: 'text', value: '.' }
]
}
]
}
API
removePosition(node[, force])
Remove position
s from node
.
If force
is given, uses delete
, otherwise, sets position
s to undefined
.
Returns
The given node
.
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, organisation, or community you agree to abide by its terms.