Re: "http-equiv" unrecognized

Mea culpa. I fixed this locally but didn't submit the changes to Dave.

FYI, the modification simply consisted of adding the following line to
lexer.c:InitMap

    MapStr("-_", extended);

And modifying the conditional in lexer.c:isValidAttrName to:

            if( (map & lowercase) ||
                (map & uppercase) ||
                (map & digit) ||
                (map & extended))
                continue;

Craig

Received on Tuesday, 6 July 1999 22:31:35 UTC