Here is my vm file:

<html>
#macro (nofun)
    This is no fun!<br>
#end
#macro (fun arg1)
    This is fun for $arg1.<br>
#end

#fun("me")
</html>

It renders properly with output:

This is fun for me. 

But if I add #fun("#nofun") or #fun("\#nofun"), it result an error. What
I really want to do here is to use the # sign as a literal character
such that it will display:

This is fun for #nofun,

How do I achieve this? Or is it a potential parser error?

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Ed Yu, IBM Certified Specialist - AIX System Administrator
Information Technology Manager,
University of South Carolina,
Advanced Solutions Group, Physics Dept.,
Columbia, SC 29208
Office (803)777-8831, FAX (803)777-8833, Email [EMAIL PROTECTED]


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to