All Projects → syntax-tree → unist-builder

syntax-tree / unist-builder

Licence: MIT license
utility to create a new trees with a nice syntax

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to unist-builder

unist-util-visit-parents
utility to recursively walk over unist nodes, with ancestral information
Stars: ✭ 25 (-51.92%)
Mutual labels:  syntax-tree, util, unist, unist-util
unist-util-map
utility to create a new tree by mapping all nodes
Stars: ✭ 30 (-42.31%)
Mutual labels:  syntax-tree, util, unist, unist-util
unist-util-inspect
utility to inspect nodes
Stars: ✭ 16 (-69.23%)
Mutual labels:  syntax-tree, util, unist, unist-util
mdast-util-to-string
utility to get the plain text content of an mdast node
Stars: ✭ 27 (-48.08%)
Mutual labels:  syntax-tree, util, unist
hast-util-to-html
utility to serialize hast to HTML
Stars: ✭ 47 (-9.62%)
Mutual labels:  syntax-tree, util, unist
hast-util-sanitize
utility to sanitize hast nodes
Stars: ✭ 34 (-34.62%)
Mutual labels:  syntax-tree, util, unist
unist-util-select
utility to select unist nodes with CSS-like selectors
Stars: ✭ 41 (-21.15%)
Mutual labels:  util, unist, unist-util
hast-util-from-dom
utility to transform a DOM tree to hast
Stars: ✭ 20 (-61.54%)
Mutual labels:  syntax-tree, util, unist
nlcst-to-string
utility to transform an nlcst tree to a string
Stars: ✭ 16 (-69.23%)
Mutual labels:  syntax-tree, util, unist
sast
Parse CSS, Sass, SCSS, and Less into a unist syntax tree
Stars: ✭ 51 (-1.92%)
Mutual labels:  syntax-tree, unist
xast
Extensible Abstract Syntax Tree
Stars: ✭ 32 (-38.46%)
Mutual labels:  syntax-tree, unist
ntast
Notion Abstract Syntax Tree specification.
Stars: ✭ 101 (+94.23%)
Mutual labels:  syntax-tree, unist
Unist Util Visit
utility to visit nodes
Stars: ✭ 101 (+94.23%)
Mutual labels:  syntax-tree, util
hast-util-to-mdast
utility to transform hast (HTML) to mdast (markdown)
Stars: ✭ 26 (-50%)
Mutual labels:  unist, unist-util
mdast-util-to-hast
utility to transform mdast to hast
Stars: ✭ 53 (+1.92%)
Mutual labels:  syntax-tree, unist
Unified
☔️ interface for parsing, inspecting, transforming, and serializing content through syntax trees
Stars: ✭ 3,036 (+5738.46%)
Mutual labels:  syntax-tree, unist
MarkdownSyntax
☄️ A Type-safe Markdown parser in Swift.
Stars: ✭ 65 (+25%)
Mutual labels:  syntax-tree, unist
unifiedjs.github.io
Site for unified
Stars: ✭ 37 (-28.85%)
Mutual labels:  syntax-tree
healthi-app
Simple app to check your laptop's battery health.
Stars: ✭ 47 (-9.62%)
Mutual labels:  util
dm2
DM2 | cool Windows app - unique windows manager, open dialog enhancer and much more!
Stars: ✭ 93 (+78.85%)
Mutual labels:  util

unist-builder

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to create trees with ease.

Contents

What is this?

This package is a hyperscript interface (like createElement from React and h from Vue and such) to help with creating unist trees.

When should I use this?

You can use this utility in your project when you generate syntax trees with code. It helps because it replaces most of the repetition otherwise needed in a syntax tree with function calls.

You can instead use hastscript or xastscript when creating hast (HTML) or xast (XML) nodes.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, 16.0+, or 18.0+), install with npm:

npm install unist-builder

In Deno with esm.sh:

import {u} from 'https://esm.sh/unist-builder@3'

In browsers with esm.sh:

<script type="module">
  import {u} from 'https://esm.sh/unist-builder@3?bundle'
</script>

Use

import {u} from 'unist-builder'

const tree = u('root', [
  u('subtree', {id: 1}),
  u('subtree', {id: 2}, [
    u('node', [u('leaf', 'leaf 1'), u('leaf', 'leaf 2')]),
    u('leaf', {id: 3}, 'leaf 3'),
    u('void', {id: 4})
  ])
])

console.dir(tree, {depth: null})

results in the following tree:

{
  type: 'root',
  children: [
    {type: 'subtree', id: 1},
    {
      type: 'subtree',
      id: 2,
      children: [
        {
          type: 'node',
          children: [
            {type: 'leaf', value: 'leaf 1'},
            {type: 'leaf', value: 'leaf 2'}
          ]
        },
        {type: 'leaf', id: 3, value: 'leaf 3'},
        {type: 'void', id: 4}
      ]
    }
  ]
}

API

This package exports the identifier u. There is no default export.

u(type[, props][, children|value])

Build a node.

Signatures
  • u(type[, props], children) — create a parent (Parent)
  • u(type[, props], value) — create a literal (Literal)
  • u(type[, props]) — create a void node (neither parent not literal)
Parameters
  • type (string) — node type
  • props (Record<string, unknown>) — fields assigned to node
  • children (Array<Node>) — children of node
  • value (*) — value of node (cast to string)
Returns

Built node (Node).

Types

This package is fully typed with TypeScript. It exports the additional types Props and ChildrenOrValue.

Compatibility

Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18.0+. Our projects sometimes work with older versions, but this is not guaranteed.

Related

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 © Eugene Sharygin

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].