QML - Create Your Own Adventure

Name Topic Used in Type
embed Station station element
This element directly or indirectly includes a source (like another website, or a local file) into the output. In XHTML, this will be in the form of an inline frame if merge="false", the default, is chosen. Using this feature you can handle forms with database access, link a shockwave animation, or anything else imaginable that'd exceed QML itself.
Note that if you choose merge="true", the target source needs to be in XML.

Support for this element is optional: conforming QML-Interpreters can disregard this element for reasons of browser backwards-compatibility (inline frame output) and security (reading from the file system).
Sample:
<text> The following shows the QML website:<break/>
</text>

<embed source="http://questml.com"/>

Attributes: source | merge