Example input
A map of a web application that, upon entering, takes you to the main menu, where there are several buttons, including one to join a room and another to create a room. The first one will connect you to the server to check if the room exists, and if it does, it will join you to it, taking all the information from the server. The second button will check if the room does not exist, and if it doesn't, it will create it and generate the information on the server. Once this is done, it will join you to the created room.
Example output
<map version="1.0.1">
<node TEXT="Web application">
<node TEXT="Main menu">
<node TEXT="Button to join a room">
<node TEXT="Connect to the server"/>
<node TEXT="Check if the room exists"/>
<node TEXT="Join the room"/>
<node TEXT="Retrieve information from the server"/>
</node>
<node TEXT="Button to create a room">
<node TEXT="Check if the room exists"/>
<node TEXT="Generate information on the server"/>
<node TEXT="Create the room"/>
<node TEXT="Join the created room"/>
</node>
<node TEXT="Several buttons"/>
</node>
</node>
</map>