[REBOL] Re: make-doc-pro: Version 1.0.3 beta update
From: rebol665:ifrance at: 5-Jun-2002 12:19
Hi Robert
I still have problem with HTML tag.
Try with this small text.
8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
Testing make-doc-pro
author: Patrick Philipot
date: 5-jun-2002
=toc
===Escaping HTML code
REBOL []
print "Content-Type: text/html^/^/"
print [
<HTML>
<TITLE>"CGI with Rebol"</TITLE>
<BODY>
<H1>"Hello CGI-World!"</H1>
</BODY>
</HTML>
]
8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
Patrick