[shortcode]
Produces
[
{
"type": "shortcode",
"token": "[shortcode]",
"name": "shortcode"
}
]
see the following [shortcode]
Produces
[
{
"type": "text",
"token": "see the following "
},
{
"type": "shortcode",
"token": "[shortcode]",
"name": "shortcode"
}
]
[shortcode a1 a2=true a3="true"]
Produces
[
{
"type": "shortcode",
"token": "[shortcode a1 a2=true a3=\"true\"]",
"name": "shortcode",
"attributes": {
"a1": true,
"a2": true,
"a3": "true"
}
}
]