Block {
    entries: [
        Entry {
            tags: [
                Tag {
                    key: "TAG 1 ",
                    format_target: Some(
                        FormatTarget {
                            target: Table,
                            args: None,
                        },
                    ),
                    value: [
                        Some(
                            SubDoc(
                                SubDoc {
                                    key: "COL A",
                                    text: "1,1 ",
                                },
                            ),
                        ),
                        Some(
                            SubDoc(
                                SubDoc {
                                    key: "COL B",
                                    text: "1,2",
                                },
                            ),
                        ),
                    ],
                },
                Tag {
                    key: "TAG 1",
                    format_target: None,
                    value: [
                        Some(
                            SubDoc(
                                SubDoc {
                                    key: "COL A",
                                    text: "2,1 ",
                                },
                            ),
                        ),
                        Some(
                            SubDoc(
                                SubDoc {
                                    key: "COL B",
                                    text: "2,2",
                                },
                            ),
                        ),
                    ],
                },
            ],
        },
        Entry {
            tags: [
                Tag {
                    key: "TAG 2 ",
                    format_target: Some(
                        FormatTarget {
                            target: Code,
                            args: Some(
                                [
                                    "bash",
                                ],
                            ),
                        },
                    ),
                    value: [],
                },
                Tag {
                    key: "TAG 2",
                    format_target: None,
                    value: [
                        Some(
                            Text(
                                "export TEST=\"Hello, World!\"",
                            ),
                        ),
                    ],
                },
                Tag {
                    key: "TAG 2",
                    format_target: None,
                    value: [
                        Some(
                            Text(
                                "[[ $TEST == \"Hello, World!\" ]] && echo \"Test passed\" || echo \"Test failed\"",
                            ),
                        ),
                    ],
                },
            ],
        },
        Entry {
            tags: [
                Tag {
                    key: "TAG 3",
                    format_target: None,
                    value: [
                        Some(
                            Text(
                                "Lorem ipsum",
                            ),
                        ),
                    ],
                },
                Tag {
                    key: "TAG 3",
                    format_target: None,
                    value: [
                        Some(
                            Text(
                                "dolor sit amet, consectetur adipiscing elit.",
                            ),
                        ),
                    ],
                },
            ],
        },
    ],
}