August 20, 2004
1) completed named enteties list

2) fixed Unicode interpretation byte<->UTF-8

3) marked the non-breaking space kludge as bug; reason:
"$" stands for non-breaking space (160)
"§" stand for normal space (32)

| dchar*$msg$=$"do$not$break";
will be interpreted as
| dchar*§msg§=§"do§not§break";
but should be interpreted as
| dchar*§msg§=§"do$not$break";

Thomas