QML - Create Your Own Adventure

Name Topic Used in Type
target Text link attribute
The link target sets where the link will open.
By default, it will be openend in a new window. If you set link to open in the same window (by setting the target to "self"), a user following it will loose the current state of the quest.
Sample:
<text>
   To get to know about QML-updates, visit the
   <link
      to="http://www.outer-court.com/goodies/qml.htm"
      target="self" >QML Homepage</link>.
</text>

Values: blank | self | top