in reply to Re: Perl 6 release dates - two years later
in thread Perl 6 release dates - two years later

Next time, can you please close those tr and td tags?

The tags are closed, but I presume you mean the elements aren't closed. However, closing those elements is not needed. From the HTML 4.01 spec:

<!ELEMENT TR - O (TH|TD)+ -- table row --> <!ELEMENT (TH|TD) - O (%flow;)* -- table header cell, table dat +a cell-->
If I liked to type in more keystrokes than necessary, I'd be programming in Java instead of Perl. If you have broken software that can't deal elements that aren't closed, complain to your vendor.

Replies are listed 'Best First'.
Re^3: Perl 6 release dates - two years later
by hardburn (Abbot) on Oct 21, 2004 at 16:58 UTC

    The XHTML spec says they have to be closed (or use an empty tag, like <td />, but I generally only use that for tags like <hr /> that don't have any data associated with them). Properly balanced tags make things much easier to parse.

    "There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

      $ HEAD 'http://www.perlmonks.org/index.pl?node_id=401092' 200 OK Connection: close Date: Thu, 21 Oct 2004 22:42:03 GMT Server: Apache/1.3.27 Content-Type: text/html; charset=ISO-8859-1 Client-Date: Thu, 21 Oct 2004 22:42:07 GMT Client-Peer: 209.197.123.153:80 Client-Response-Num: 1
      Note the Content-Type. It says text/html, not text/xhtml.

        XHTML doesn't have a seperate MIME type.

        "There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

Re^3: Perl 6 release dates - two years later
by Juerd (Abbot) on Oct 21, 2004 at 18:23 UTC

    I stand corrected.