Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: [REBOL]HTML tags in content, not in source

From: joel:neely:fedex at: 29-Oct-2000 13:12

Hi, Tim, Is this what you meant, or did I misunderstand the question?
>> some-html: [
[ <html> newline [ <head> newline [ <title> {Hello, world!} </title> newline [ </head> newline [ <body bgcolor="#000066" text="#ffffcc"> newline [ <h3> {Hello, world!} </h3> newline [ <h4> {(Especially Tim!)} </h4> newline [ <p> {Is this what you meant?} </p> newline [ </body> newline [ </html> newline [ ] == [ <html> newline <head> newline <title> "Hello, world!" </title> newline </head> newline <body bgcolor="...
>> print some-html
<html> <head> <title> Hello, world! </title> </head> <body bgcolor="#000066" text="#ffffcc"> <h3> Hello, world! </h3> <h4> (Especially Tim!) </h4> <p> Is this what you meant? </p> </body> </html>
>> write %some-page.html
...etc... [rebol-bounce--rebol--com] wrote: