Developers TODO list
====================

* Bring up to spec (line continuation and list values). ConfigParser
  uses [], (), {}. Cloanto's spec only lists: key = val1, val2, val3.
  [] appears to be a list, () a range, not real sure about {}.

* Add an XML format (http://www.xml.com/pub/a/norm/part1/getstart1.html).
    <configuration-file>
      <section name="section1">
        <entry name="name1" value="value1"/>
        <entry name="name2" value="value2"/>
      </section>
      <section name="section2">
        <entry name="someothername" value="someothervalue"/>
      </section>
    </configuration-file>

