howto/en/customize xml
From Wormux
!!! WARNING: This documentation is very old (relative to Wormux 0.5) !!!
Most important options are editable in the option menu. Other should be directly modified in ".xml file". XML is a file format, next world standard for most application ;-) It's simply the way how data are stored. It's something like that :
<?xml version="1.0" encoding="iso-8859-1"?>
<options>
<number>10</number>
<sub_section>
<dynamite>5</dynamite>
<another_syntax string="hello world!" />
</sub_section>
</options>
You can see XML header : "<?xml version="1.0" (...)". Then a root element, have to be unique, here : "options". Values are stored between markup : <name>(...)</name>, or in "attribute" : <name option="..." (...) >.








