From: "Stephan Kämper" Date: 2004-06-11T02:43:38+09:00 Subject: Re: Smart Quotes Martin DeMello wrote: > Trying to save myself a bit of tedium - has anyone already written code > to replace smart quotes and other such extensions with their normal > ascii equivalents? I think _why did, at least RedCloth handles qoutes nicely. irb(main):001:0> require "RedCloth" => true irb(main):002:0> a = RedCloth.new( "\"Quotes\" in a RedCloth string") => "\"Quotes\" in a RedCloth string" irb(main):004:0> a.to_html => "

“Quotes” in a RedCloth string

" Now, the other posts to this thread made me think about character sets... Happy rubying Stephan