Socket
Socket
Sign inDemoInstall

unist-util-visit-parents

Package Overview
Dependencies
1
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    unist-util-visit-parents

Recursively walk over unist nodes, with ancestral information


Version published
Maintainers
1
Install size
24.4 kB
Created

Package description

What is unist-util-visit-parents?

The unist-util-visit-parents package is a utility for traversing Unist syntax trees. It allows for visiting nodes, optionally filtered by type, and provides access to parent nodes during traversal. This can be particularly useful for manipulating or inspecting the structure of documents parsed into Unist syntax trees, such as Markdown or HTML parsed by remark or rehype processors.

What are unist-util-visit-parents's main functionalities?

Visiting nodes with access to their parents

This feature allows you to visit all nodes of a specified type ('paragraph' in this example) in a Unist syntax tree, and for each node, you have access to an array of its ancestor nodes. This is useful for context-aware processing or transformations.

visit(tree, 'paragraph', (node, ancestors) => {
  console.log(node);
  console.log(ancestors);
});

Visiting all nodes without filtering

This feature enables visiting all nodes in the syntax tree without filtering by type. Each visited node is accompanied by its ancestors, allowing for comprehensive traversal and manipulation of the tree.

visit(tree, (node, ancestors) => {
  console.log(node);
  console.log(ancestors);
});

Other packages similar to unist-util-visit-parents

Readme

Source

unist-util-visit-parents

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to visit nodes, with ancestral information.

Install

npm:

npm install unist-util-visit-parents

Usage

var remark = require('remark')
var visit = require('unist-util-visit-parents')

var tree = remark.parse('Some _emphasis_, **importance**, and `code`.')

visit(tree, 'strong', visitor)

function visitor(node, ancestors) {
  console.log(ancestors)
}

Yields:

[ { type: 'root', children: [ [Object] ] },
  { type: 'paragraph',
    children:
     [ [Object],
       [Object],
       [Object],
       [Object],
       [Object],
       [Object],
       [Object] ] } ]

API

visit(tree[, test], visitor[, reverse])

Visit nodes (inclusive descendants of tree), with ancestral information. Optionally filtering nodes. Optionally in reverse.

Parameters
  • tree (Node) — Tree to traverse
  • test (Test, optional) — is-compatible test (such as a type)
  • visitor (Function) — Function invoked when a node is found that passes test
  • reverse (boolean, default: false) — The tree is walked in preorder (NLR), visiting the node itself, then its head, etc. When reverse is passed, the tree is stilled walked in preorder, but now in NRL (the node itself, then its tail, etc.)
next? = visitor(node, ancestors)

Invoked when a node (matching test, if given) is found.

Visitors are free to transform node. They can also transform the parent of node (the last of ancestors). Replacing node itself, if visit.SKIP is not returned, still causes its descendants to be visited. If adding or removing previous siblings (or next siblings, in case of reverse) of node, visitor should return a new index (number) to specify the sibling to traverse after node is traversed. Adding or removing next siblings of node (or previous siblings, in case of reverse) is handled as expected without needing to return a new index. Removing the children property of parent still results in them being traversed.

Parameters
  • node (Node) — Found node
  • ancestors (Array.<Node>) — Ancestors of node
Returns

The return value can have the following forms:

  • index (number) — Treated as a tuple of [CONTINUE, index]
  • action (*) — Treated as a tuple of [action]
  • tuple (Array.<*>) — List with one or two values, the first an action, the second and index. Note that passing a tuple only makes sense if the action is SKIP. If the action is EXIT, that action can be returned. If the action is CONTINUE, index can be returned.
action

An action can have the following values:

  • visit.EXIT (false) — Stop traversing immediately
  • visit.CONTINUE (true) — Continue traversing as normal (same behaviour as not returning anything)
  • visit.SKIP ('skip') — Do not traverse this node’s children; continue with the specified index
index

index (number) — Move to the sibling at index next (after node itself is completely traversed). Useful if mutating the tree, such as removing the node the visitor is currently on, or any of its previous siblings (or next siblings, in case of reverse) Results less than 0 or greater than or equal to children.length stop traversing the parent

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.

License

MIT © Titus Wormer

Keywords

FAQs

Last updated on 31 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc