Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 666 Bytes

File metadata and controls

57 lines (45 loc) · 666 Bytes

Without attributes

[shortcode]

Produces

[
  {
    "type": "shortcode",
    "token": "[shortcode]",
    "name": "shortcode"
  }
]

With extra text

see the following [shortcode]

Produces

[
  {
    "type": "text",
    "token": "see the following "
  },
  {
    "type": "shortcode",
    "token": "[shortcode]",
    "name": "shortcode"
  }
]

Boolean attributes

[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"
    }
  }
]