On Nov 22, 2005, at 12:30 AM, could ildg wrote:

> Thank you~
> It works!
> but how can paste "<" and ">", please?
> these 2 symbols will also confuse wordpress and I can't publish  
> what I want.

Replace < with &lt;

Replace > with &gt;

(where those abbreviations stand for "less than" and "greater than")

Before: if x < 5:

After: if x &lt; 5:

Another common character in code that you "should" do similarly is  
the double quote ("). For that, use &quot;

Before: if x == "foo":

After: if x == &quot;foo&quot;:

  -dan

-- 
Any society that needs disclaimers has too many lawyers.  -Erik Pepke


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to