-
Notifications
You must be signed in to change notification settings - Fork 59
Label
Jake Stanger edited this page Apr 7, 2023
·
3 revisions
Displays custom text, with the ability to embed scripts.
Type:
label
Name | Type | Default | Description |
---|---|---|---|
label |
string |
null |
Text, optionally with embedded scripts. |
JSON
{
"end": [
{
"type": "label",
"label": "random num: {{500:echo $RANDOM}}"
}
]
}
TOML
[[end]]
type = "label"
label = "random num: {{500:echo $RANDOM}}"
YAML
end:
- type: "label"
label: "random num: {{500:echo $RANDOM}}"
Corn
{
end = [
{
type = "label"
label = "random num: {{500:echo $RANDOM}}"
}
]
}
Selector | Description |
---|---|
#label |
Label widget |