Skip to content

syntax-tree/unist-util-source

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unist-util-source Build Status Coverage Status

Unist utility to get the source of a Node or Position.

Installation

npm:

npm install unist-util-source

Usage

Say we have the following file, example.md:

> + **[Hello](./example)**
>   world.

And our script, example.js, looks as follows:

var vfile = require('to-vfile')
var unified = require('unified')
var parse = require('remark-parse')
var source = require('unist-util-source')

var file = vfile.readSync('example.md')
var tree = unified()
  .use(parse)
  .parse(file)

var list = tree.children[0].children[0]
console.log(source(list, file))

Now, running node example yields:

+ **[Hello](./example)**
  world.

API

source(value, doc)

Parameters
  • value (Node or Position) — Value to get
  • doc (VFile or string) — Document in which value exists
Returns

string? — Source of value in file, if available.

Contribute

See contributing.md in syntax-tree/unist for ways to get started.

This organisation has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.

License

MIT © Titus Wormer

About

utility to get the source of a node or position

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •