Module parsers

Module parsers 

Source
Expand description

Adds support for parsing various programming and markup languages through a unified trait: Parser.

Structs§

CollapseIdentifiers
A parser that wraps any other parser to collapse token strings that match the pattern word_word or word-word.
IsolateEnglish
A parser that wraps another, using heuristics to quickly redact paragraphs of a document that aren’t intended to be English text.
Markdown
A parser that wraps the PlainEnglish parser that allows one to parse CommonMark files.
MarkdownOptions
Mask
Composes a Masker and a Parser to parse only masked chunks of text.
OrgMode
A parser that wraps the PlainEnglish parser that allows one to parse Org-mode files.
PlainEnglish
A parser that will attempt to lex as many tokens as possible, without discrimination and until the end of input.

Traits§

Parser
StrParser