reconcile-text 0.12.0

Intelligent 3-way text merging with automated conflict resolution
Documentation
---
source: src/tokenizer/markdown_tokenizer.rs
expression: "markdown_tokenizer(\"# Hello world\")"
---
[
    Token {
        normalized: "# Hello",
        original: "# Hello",
        is_left_joinable: false,
        is_right_joinable: true,
    },
    Token {
        normalized: " world",
        original: " ",
        is_left_joinable: true,
        is_right_joinable: true,
    },
    Token {
        normalized: "world",
        original: "world",
        is_left_joinable: true,
        is_right_joinable: true,
    },
]