Concordion > Displaying Results >

Breadcrumbs

To make it easier to navigate around the results, and to remove the headache of having to maintain upward links manually, breadcrumbs are automatically added to documents. The package structure provides the breadcrumb structure.

Example

Given the following source files:

Resource Name Content
/spec/admin/Admin.html
<html />
/spec/admin/user/User.html
<html>
<title>Users</title>                
</html>
/spec/admin/user/DeletingUsers.html
<html />

We expect these breadcrumbs to be generated:

Resource Name Breadcrumb Text Breadcrumb HTML
/spec/admin/Admin.html  
 
/spec/admin/user/User.html Admin >
<span class="breadcrumbs"> _
<a href="../Admin.html">Admin</a> &gt; _
</span>
/spec/admin/user/DeletingUsers.html Admin > Users >
<span class="breadcrumbs"> _
<a href="../Admin.html">Admin</a> &gt; _
 <a href="User.html">Users</a> &gt; _
</span>

Further Details