unist-util-remove-position
unist utility to remove positions from a tree
Last updated 4 years ago by wooorm .
MIT · Repository · Bugs · Original npm
$ cnpm install unist-util-remove-position 
SYNC missed versions from official npm registry.

unist-util-remove-position

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to remove positions from tree.

Install

This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required.

npm:

npm install unist-util-remove-position

Use

import remark from 'remark'
import {removePosition} from 'unist-util-remove-position'

const 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

This package exports the following identifiers: removePosition. There is no default export.

removePosition(node[, force])

Remove position fields from node. If force is given, uses delete, otherwise, sets positions 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, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer

Current Tags

  • 5.0.0                                ...           latest (2 years ago)

8 Versions

  • 5.0.0                                ...           2 years ago
  • 1.1.2                                ...           7 years ago
  • 4.0.2                                ...           3 years ago
  • 4.0.1                                ...           4 years ago
  • 3.0.0                                ...           5 years ago
  • 1.1.3                                ...           6 years ago
  • 1.1.4                                ...           6 years ago
  • 2.0.1                                ...           6 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (14)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org