summaryrefslogtreecommitdiff
path: root/archived/projt-launcher/tests/testdata/MetaComponentParse/component_with_extra.json
blob: 887becdbebf5e2dd27c222c24686e0d5896c2ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "description": [
        {
            "text": "Hello, ",
            "color": "red",
            "bold": true,
            "italic": true,
            "extra": [
                {
                    "extra": [
                        "Component!"
                    ],
                    "bold": false,
                    "italic": false
                }
            ]
        }
    ],
    "expected_output":
        "<span style=\"color: red; font-weight: bold; font-style: italic;\">Hello, <span style=\"font-weight: normal; font-style: normal;\">Component!</span></span>"
}