unist-util-source
!Buildbuild-badgebuild
!Coveragecoverage-badgecoverage
!Downloadsdownloads-badgedownloads
!Sizesize-badgesize
!Sponsorssponsors-badgecollective
!Backersbackers-badgecollective
!Chatchat-badgechatunist utility to get the source code of a node or position.
Contents
* [`source(value, file)`](#sourcevalue-file)
What is this?
This is a tiny utility that lets you get the source code of a node or position.When should I use this?
This is super tiny utility useful when you want to display the source code of something in a file.Install
This package is ESM onlyesm. In Node.js (version 14.14+ and 16.0+), install with npm:npm install unist-util-source
In Deno with
esm.sh
esmsh:import {source} from 'https://esm.sh/unist-util-source@4'
In browsers with
esm.sh
esmsh:<script type="module">
import {source} from 'https://esm.sh/unist-util-source@4?bundle'
</script>
Use
Say our documentexample.md
contains:> + **[Hello](./example)**
> world.
…and our module
example.js
looks as follows:import {read} from 'to-vfile'
import {fromMarkdown} from 'mdast-util-from-markdown'
import {source} from 'unist-util-source'
const file = await read('example.md')
const tree = fromMarkdown(String(file))
const strong = tree.children[0].children[0].children[0].children[0].children[0]
console.log(source(strong, file))
…now running
node example.js
yields:**[Hello](./example)**
API
This package exports the identifiersource
source.
There is no default export.source(value, file)
Get the source of a node or at a position.Parameters
— value to get
— file in which `value` exists
Returns
Source ofvalue
in doc
, if available (string
or null
).Types
This package is fully typed with TypeScript. It exports no additional types.Compatibility
Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. Our projects sometimes work with older versions, but this is not guaranteed.Contribute
Seecontributing.md
contributing in syntax-tree/.github
health for
ways to get started.
See support.md
support for ways to get help.This project has a code of conductcoc. By interacting with this repository, organisation, or community you agree to abide by its terms.