JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 208
  • Score
    100M100P100Q96002F
  • License MIT

retext parser for the Dutch language

Package Exports

  • retext-dutch

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (retext-dutch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

retext-dutch Build Coverage Downloads Size Chat

Parser for unified. Parses the Dutch language to a syntax tree (nlcst).

Installation

npm:

npm install retext-dutch

Usage

var unified = require('unified')
var stream = require('unified-stream')
var dutch = require('retext-dutch')
var stringify = require('retext-stringify')
var emoji = require('retext-emoji')

var processor = unified()
  .use(dutch)
  .use(emoji, {convert: 'encode'})
  .use(stringify)

process.stdin.pipe(stream(processor)).pipe(process.stdout)

Table of Contents

API

processor.use(dutch)

Configure the processor to read Dutch text as input.

There is no configuration for the parser.

dutch.Parser

Access to the parser (parse-dutch).

License

MIT © Titus Wormer