The Report/Export feature allows you to create custom reports in HTML, XML, or any other text format.


With report Templates, you can create individual reports. A report Template is an HTML file, for HTML reports, or a text file, for text exports, that contains predefined data fields. These data fields are replaced with actual values when the report is generated.


Reports are always created in UTF-8 format.


Steps to create a report:


Steps:
1.  Select "Report/Export" from the Tools menu.
2.  Select the Bookmarks that should be included in the report.
3.  Select a report Template.
4.  Select the output file where the report will be created.
5.  Click the button "Start report".

Structure of report Templates

Structure of an HTML report Template, without folders:


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>your title</title>
</head>
<body>
Your header text

{wsw_begin_url}
 <a href="{wsw_url_url}" target="_top">{wsw_url_name}</a><br>
{wsw_url_text}<br>
 date: {wsw_url_date_changed}<br>
{wsw_end_url}

<br>
<br>
report date: {wsw_report_date}<br>
</body>
</html>


Structure of an HTML report Template, with folders:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>your title</title>
</head>
<body>
Your header text

{wsw_begin_folder}
 Folder: <b>{wsw_folder_name}</b><br><br>
{wsw_begin_url}
   <a href="{wsw_url_url}" target="_top">{wsw_url_name}</a><br>
  {wsw_url_text}<br>
   date: {wsw_url_date_changed}<br>
{wsw_end_url}
{wsw_end_folder}

<br>
<br>
report date: {wsw_report_date}<br>
</body>
</html>