[REBOL] A novice question Re:

2000-08-19 Thread bhandley
]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 20, 2000 8:27 AM Subject: [REBOL] A novice question > I was trying to modify the web parser code from the > User's Guide. The original code is like this: > tag-parser: make object! [ > tags: make block! 100 > t

[REBOL] A novice question

2000-08-19 Thread vkmodgil
I was trying to modify the web parser code from the User's Guide. The original code is like this: tag-parser: make object! [ tags: make block! 100 text: make string! 8000 html-code: [ copy tag ["<" thru ">"] (append tags tag) | copy txt to "<" (append text txt) ] parse-tags: func [site[url!]]