retext-latin
Parser for unified. Parses Latin-script natural
language to an nlcst syntax tree. Used in the retext
processor.
Installation
npm:
npm install retext-latin
Usage
var unified = require('unified');
var latin = require('retext-latin');
var stringify = require('retext-stringify');
var emoji = require('retext-emoji');
process.stdin
.pipe(unified())
.use(latin)
.use(emoji, {convert: 'encode'})
.use(stringify)
.pipe(process.stdout);
Table of Contents
API
processor.use(latin)
Configure the processor
to read Latin-script text as input.
There is no configuration for the parser.
latin.Parser
Access to the parser (wooorm/parse-latin
).
License
MIT © Titus Wormer