Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Re: Non-standard options to tags for CGI.pm

by talexb (Chancellor)
on Jan 10, 2002 at 23:57 UTC ( [id://137829]=note: print w/replies, xml ) Need Help??


in reply to Re: Non-standard options to tags for CGI.pm
in thread Non-standard options to tags for CGI.pm

Very cool script. I did notice that either CGI.pm or html2cgi hiccup a bit with lists, whether or not the <li> tag is closed with a </li>.

The following HTML chunk

<html> <head> <title>There is no title</title> </head> <body> <ul> <li>First item <li>Second item </ul> </body> </html>
becomes
use CGI "-no_debug", ":html", "comment", "header"; print header, start_html("-title" => "There is no title"), ul ( ul ( li ( "First item ", ), "\n", li ( "Second item ", ), "\n", ), "\n", ), "\n", end_html, ;
I have not run this back through CGI.pm to see the output, but it seems that something is adding an extra <ul> in there. (It adds an extra one for each <li> tag.)

--t. alex

"Excellent. Release the hounds." -- Monty Burns.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://137829]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-24 05:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found