5 unstable releases

0.5.0 Dec 3, 2023
0.4.2 Oct 28, 2021
0.4.1 Oct 26, 2021
0.4.0 Oct 26, 2021
0.3.0 Oct 18, 2021

#169 in WebAssembly

Download history 74/week @ 2024-01-08 5/week @ 2024-02-19 24/week @ 2024-02-26 5/week @ 2024-03-04 15/week @ 2024-03-11 8/week @ 2024-03-18 100/week @ 2024-04-01

125 downloads per month
Used in 6 crates (2 directly)

AGPL-3.0-or-later

81KB
2.5K SLoC

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

Dependencies

~2.3–3MB
~67K SLoC