inlyne 0.4.2

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\nIn a paragraph https://example.org\n\n- In a list https://example.org\n\n\n --- html\n\n<p>In a paragraph <a href=\"https://example.org\">https://example.org</a></p>\n<ul>\n<li>In a list <a href=\"https://example.org\">https://example.org</a></li>\n</ul>\n"
expression: "interpret_md_with_opts(text, opts)"
---
[
    TextBox(
        TextBox {
            texts: [
                Text {
                    text: "In a paragraph ",
                    default_color: Color(BLACK),
                    ..
                },
                Text {
                    text: "https://example.org",
                    color: Some(Color { r: 0.09, g: 0.13, b: 1.00 }),
                    link: Some("https://example.org"),
                    ..
                },
            ],
            ..
        },
    ),
    Spacer(
        InvisibleSpacer(5),
    ),
    TextBox(
        TextBox {
            indent: 50.0,
            texts: [
                Text {
                    text: "ยท ",
                    default_color: Color(BLACK),
                    style: BOLD ,
                    ..
                },
                Text {
                    text: "In a list ",
                    default_color: Color(BLACK),
                    ..
                },
                Text {
                    text: "https://example.org",
                    color: Some(Color { r: 0.09, g: 0.13, b: 1.00 }),
                    link: Some("https://example.org"),
                    ..
                },
            ],
            ..
        },
    ),
    Spacer(
        InvisibleSpacer(5),
    ),
]