I would like to create documentation using standard xml. I would like to stay away from Microsoft Word but be able to create documents and procedures using xml. I actually tried to create something simple with Word just to test and then saving it as xml. The amount of information saved is ridiculous. I want something much simpler and that allows me to go back and edit the files using just Notepad++ or similar. With an xml file created by Word, the structure is so complex that I am stuck using Word.
Are there tools available that can help me do that?
I am currently doing the following:
<?xml version="1.0" encoding="utf-8"?>
<books>
<title name="Sample document">
<author>Insert Author</author>
<chapter name="Title of the chapter one">
<content></content>
</chapter>
</title>
</books>
I am just making up the fields as I go but if there is a tool that can automatically do that, it would save me a lot of time and.. I don't want to reinvent the wheel.
Suggestions are appreciated.
Thanks Tony