inlyne 0.4.0

Introducing Inlyne, a GPU powered yet browserless tool to help you quickly view markdown files in the blink of an eye.
---
source: src/interpreter/tests.rs
description: " --- md\n\n```toml\nkey = 123\n```\n\n\n --- html\n\n<pre style=\"background-color:#f6f8fa;\"><code class=\"language-toml\"><span style=\"color:#63a35c;\">key </span><span style=\"color:#333333;\">= </span><span style=\"color:#0086b3;\">123\n</span></code></pre>\n"
expression: "interpret_md_with_opts(text, opts)"
---
[
    TextBox(
        TextBox {
            background_color: Some(Color { r: 0.92, g: 0.94, b: 0.96 }),
            is_code_block: true,
            texts: [
                Text {
                    text: "key ",
                    font_family: Monospace,
                    color: Some(Color { r: 0.12, g: 0.37, b: 0.11 }),
                    ..
                },
                Text {
                    text: "= ",
                    font_family: Monospace,
                    color: Some(Color { r: 0.03, g: 0.03, b: 0.03 }),
                    ..
                },
                Text {
                    text: "123",
                    font_family: Monospace,
                    color: Some(Color { r: 0.00, g: 0.24, b: 0.45 }),
                    ..
                },
                Text {
                    text: "\n",
                    default_color: Color(BLACK),
                    ..
                },
            ],
            ..
        },
    ),
    Spacer(
        InvisibleSpacer(5),
    ),
]