--- DpSyntaxHighlighterPlugin.pm 2009-11-11 15:09:26.000000000 -0500 +++ DpSyntaxHighlighterPlugin.pm.new 2009-12-11 17:32:20.000000000 -0500 @@ -56,12 +56,13 @@ my $out = "<$el name='code' class='brush: $lang\;"; # attributes + $out .= " auto-links: false;" if lc$params{noautolinks} eq 'on'; $out .= " gutter: false;" if lc$params{nogutter} eq 'on'; $out .= " toolbar: false;" if lc$params{nocontrols} eq 'on'; $out .= " collapse: true;" if lc$params{collapse} eq 'on'; $out .= " first-line: $params{firstline};" if $params{firstline}; $out .= " wrap-lines: false;" if lc$params{nowrap} eq 'on'; - $out .= " ruler: true;" if lc$params{ ruler} eq 'on'; + $out .= " ruler: true;" if lc$params{ruler} eq 'on'; $out .= " smart-tabs: false;" if lc$params{nosmarttabs} eq 'on'; $out .= " tab-size: $params{tabsize};" if $params{tabsize}; $out .= " highlight: [$params{highlight}];" if $params{highlight};