inlyne 0.5.1-beta

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<details>\n<summary>summary</summary>\n\ncollapsed text\n</details>\n\n\n --- html\n\n<details>\n<summary>summary</summary>\n<p>collapsed text</p>\n</details>\n"
expression: "interpret_md_with_opts(text, opts)"
---
[
    Section(
        Section {
            elements: [
                Positioned {
                    inner: TextBox(
                        TextBox {
                            texts: [
                                Text {
                                    text: "collapsed text",
                                    default_color: Color(BLACK),
                                    ..
                                },
                            ],
                            ..
                        },
                    ),
                    bounds: None,
                },
                Positioned {
                    inner: Spacer(
                        InvisibleSpacer(5),
                    ),
                    bounds: None,
                },
            ],
            hidpi_scale: 1.0,
            hidden: RefCell {
                value: true,
            },
            summary: Some(
                Positioned {
                    inner: TextBox(
                        TextBox {
                            texts: [
                                Text {
                                    text: "summary",
                                    default_color: Color(BLACK),
                                    ..
                                },
                            ],
                            ..
                        },
                    ),
                    bounds: None,
                },
            ),
        },
    ),
]