osr-mono/packages/osr-code-bot/docs/.frontmatter/starlight/aside.json
2025-02-01 14:25:34 +01:00

41 lines
932 B
JSON

{
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
"frontMatter.content.snippets": {
"Aside": {
"description": "Create an admonitions or callout",
"body": [
":::<<type>><<#label>>[<<label>>]<</label>>",
"<<&content>>",
":::"
],
"openingTags": "<<",
"closingTags": ">>",
"fields": [{
"name": "type",
"title": "type",
"type": "choice",
"choices": [
"note",
"tip",
"caution",
"danger"
],
"default": "note"
},
{
"name": "label",
"title": "label",
"type": "string",
"single": true
},
{
"name": "content",
"title": "content",
"type": "string",
"single": false,
"default": "FM_SELECTED_TEXT"
}
]
}
}
}