RO CSVI

Custom HTML export for export templates

For a long time RO CSVI provided an HTML export which was solely based on a fixed format. Users could create overrides but that might be cumbersome. RO CSVI now offers a custom HTML export. Design your own output

Users can design their own HTML layout for export templates if HTML is selected as export type. 

  1. Create or open an export template
  2. On File tab set Export type to HTML
  3. Set the Website to Custom
  4. On the HTML Layout tab set
    1. HTML Header
    2. HTML Body
    3. HTML Footer.
  5. Save the template 
  6. Run export.

Below is an example for setting HTML for Joomla content export with two fields title and category_path

Example HTML Header

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="Webpage description" />
<meta charset="utf-8">
<title>Content Export</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
</head>
<body>
<table>
<tr>
<th>Title</th>
<th>Category Path</th>
</tr>

Example HTML Body

<tr>
<td>[title]</td>
<td>[category_path]</td>
</tr>

Example HTML Footer

</table> 
</body>
</html>