Capitalisation

What I learned

This project given an opportunity to work on theses points :

  • Make a real project with ant and xsl conversions

  • Implement a Sax Parser using Java

  • Discover how to create odt files

From linear titles to hierarchized sections

The most difficult process during the development of this converter has been the transformation of a series of titles of different levels to sections and sub sections.This is a recurrent problem and the developers of some other converters have also faced it.

After having tried to do this transformation using an XSL sheet, it has appeared that the best way was to parse the orginal content using a very linear method.

I chose the SAX parser in Java, because of its popularity and because it is easy to apprehend.