No description available.
Properties
color
string
Optional
Background color (CSS color value)
emoji
string
Optional
Emoji icon for the callout
facets
array
of refapp.offprint.richtext.facet
Optional
Facets for text formatting
plaintext
string
Required
The callout text content
View raw schema
{
"type": "object",
"required": [
"plaintext"
],
"properties": {
"color": {
"type": "string",
"description": "Background color (CSS color value)"
},
"emoji": {
"type": "string",
"default": "💡",
"description": "Emoji icon for the callout"
},
"facets": {
"type": "array",
"items": {
"ref": "app.offprint.richtext.facet",
"type": "ref"
},
"description": "Facets for text formatting"
},
"plaintext": {
"type": "string",
"required": true,
"description": "The callout text content"
}
}
}