The <embed> element is a placeholder for a component that the platform itself injects into the
BML while rendering. It is used by built-in setup pages (for example the import wizard and the
marketplace pages) to place an interactive component inside otherwise static markup.
The component is looked up by name in the rendering context of the page. BML written in your own
layouts, templates or scripts has no such context, so an <embed> element renders nothing there.
The element is documented for completeness; it is not meant to be used in custom BML.
Attributes
| Attribute Name | Required | Type | Description |
|---|---|---|---|
| name | Yes | String | The name under which the platform registered the component to embed. |
No other attributes are accepted, and the element must be empty.
Example
<bml>
<embed name="environmentSelector"/>
</bml>