From: Martin DeMello Date: 2011-02-14T06:28:52+09:00 Subject: Re: Newbie having serious problems On Mon, Feb 14, 2011 at 1:25 AM, Micah Wolfe <52w7te9ara@snkmail.com> wrote: > > SCRIPT: > (gen_encpolygons.rb) > > What, exactly, is wrong with his syntax and if there is how can I change > it so it will run? > > Doesn't kEND refer to having an 'end' somewhere you shouldn't? The problem is with this line: init_borders << "{color: "#0000ff",n weight: 5,n points: '" Note the quotes around the "#0000ff" which clash with the quotes in the larger string. Go through and use %{string} for all multiline strings. martin