Expand description
Adds support for parsing various programming and markup languages through a unified trait: Parser
.
Structs§
- Collapse
Identifiers - A parser that wraps any other parser to collapse token strings that match
the pattern
word_word
orword-word
. - Isolate
English - 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. - Markdown
Options - 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. - Plain
English - A parser that will attempt to lex as many tokens as possible, without discrimination and until the end of input.