############# TODO #############

some javascript stuff eventually
have had a request for an on mouseover image change wizard

The parser to make relative links for images doesn't do the job perfectly. Links
like ../ are not (yet) introduced.

There is (not yet) a configuration manager, as separate program (keeps the editor
smaller) or incorporated into the editor

use the statusbar more

A total cleanup is also needed. The program is getting too large without a good 
organisation. This is slowly improving, but also slowly getting worse.

An optional (compile time) GNOME-ify

An optional (compile time) use of the GtkEditor widget for syntax highlighting

## a big change idea ##

can we build _one_ function which can build the GUI for _every_ HTML tag
based on some information?

For the "anchor" tag you would for example need:
name = string
href = string in urllist
target = string in targetlist
(we can remove the description, you type the description, select it and
then hit the anchor button)

Then we can build an interface which has all these options, and a callback
which can make HTML out of these options. This way we can reduce the size
of html.c (so make it a lot more efficient) and we can easily add new tags
(for php3 for example) without adding a lot of code.

Another important improvement is that we then can add a new feature: 
right-click on the tag in the text, and get the menu of the tag. The only
thing you need to do is 
1) find which tag it is, and then find the info which belongs to that tag
2) extract the value of the parameters of the tag
3) generate the GUI for that tag with the values already in there
4) insert it again on the right place of the text

I think this whole idea should be pretty good possible, if we add enough
information about every tag. This information can be stored in a GList for
example, or in a structure. It is not possible for some of the wizards,
but I think it is possible for most of the tags. Wouldn't it be cool if
you can click on a tag, and it will give a menu with all the options of
the tag? It happens to often now that I simply remove a tag, and insert it
again because I need some more options.

## end of big change idea ##
