Dan Lowe wrote: > 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 < > > Replace > with > > > (where those abbreviations stand for "less than" and "greater than") > > Before: if x < 5: > > After: if x < 5: > > Another common character in code that you "should" do similarly is > the double quote ("). For that, use " > > Before: if x == "foo": > > After: if x == "foo": > > -dan > > -- > Any society that needs disclaimers has too many lawyers. -Erik Pepke
You don't *need* to replace with " However, you will need to replace any ampersands with & ( <, >, and & are characters with intrinsic qualities in html). You need to replace & before you replace anything else: if you do it after repalcing < and > you'll catch your < and >, ending up with &lt; and &gt; which is not what you want. Iain -- http://mail.python.org/mailman/listinfo/python-list