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.
- Create or open an export template
- On File tab set Export type to HTML
- Set the Website to Custom
- On the HTML Layout tab set
- HTML Header
- HTML Body
- HTML Footer.
- Save the template
- 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>