XML Output Format

You can generate a report file using an XML output format.

A report file generated in XML contains the following associated tags:
Template Structures Corresponding tags in the generated file
Section X <section>
Paragraph <para>
Table <table>
List <itemizedlist>
List Item <listitem>

File Example

<? xml version="1.0" encoding="UTF-8" ?>
- <article>
  - <section>
      <title> Title of section </title>
    - <itemizedlist>
      - <listitem>
           <para> Item of list </para>
        </listitem>
      </itemizedlist>
    - <table>
      + <tgroup cols ="2">
      </table>
    </section>
  </article>