@eternal-twin/marktwin-core
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Marktwin parser

This library implements the Marktwin (mkt) parser used by Eternal-Twin. Marktwin is the format used by Eternal-Twin for its messages. It is inspired by Markdown and the Twinoid forum code. See the Marktwin library for more details.

The parser is implemented using Rust and compiled to Wasm. It is compatible with both Node and webpack.

All inputs produce valid parse trees, parsing cannot fail.

Design

The parser uses a pipeline to gradually transform the input into a tree.

  1. Input: A string of valid unicode codepoints. It is up to the consumer to provide handle the encoding and provide this string.
  2. Context-free token stream: The lexer tokenizes the string only using the current index.
  3. Parse-event stream: Contains potentially remapped tokens end start/end events for nodes.
  4. Concrete Syntax Tree: Tree representation of the parse-event stream
  5. Abstract Syntax Tree: An adapter on top of the CST to provide easier access to the data.

Fuzzing

The Rust implementation supports fuzzing:

# Make sure that you have `cargo-fuzz`
cargo install cargo-fuzz
# Fuzz the `lexer`
cargo fuzz run lexer
# Fuzz the `parser`
cargo fuzz run parser

Readme

Keywords

none

Package Sidebar

Install

npm i @eternal-twin/marktwin-core

Weekly Downloads

0

Version

0.2.0

License

AGPL-3.0-or-later

Unpacked Size

223 kB

Total Files

10

Last publish

Collaborators

  • demurgos