1.0.0 • Published 4 years ago

jex-block-parser v1.0.0

Weekly downloads
23
License
ISC
Repository
-
Last release
4 years ago

jex-block-parser

Partition text based on indentation.

Build Status

Usage

const { parse } = require('jex-block-parser')

let input = `
hello
world
`

parse(input)

[ { scope: 'hello', children: [] },
  { scope: 'world', children: [] } ]

Deep

We don't care about blank lines or the type of indentation.

input = `
fruits
  apple
    gala
    pink lady
  pear

  cherry
    white

veggies
  kale
    red russian

  cabbage
  radish
`

parse(input)

[ { scope: 'fruits',
    children:
     [ { scope: '  apple',
         children:
          [ { scope: '    gala', children: [] },
            { scope: '    pink lady', children: [] } ] },
       { scope: '  pear', children: [] },
       { scope: '  cherry',
         children: [ { scope: '    white', children: [] } ] } ] },
  { scope: 'veggies',
    children:
     [ { scope: '  kale',
         children: [ { scope: '    red russian', children: [] } ] },
       { scope: '  cabbage', children: [] },
       { scope: '  radish', children: [] } ] } ]