From 070675e48a2158653ff9d460fa353c55481a0cf5 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 24 Apr 2010 22:43:58 -0700 Subject: [PATCH] Dollar signs > exclamation marks. --- doc-src/layouts/partials/reference/const_table.haml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc-src/layouts/partials/reference/const_table.haml b/doc-src/layouts/partials/reference/const_table.haml index 2ffd6ca2..dc4f299c 100644 --- a/doc-src/layouts/partials/reference/const_table.haml +++ b/doc-src/layouts/partials/reference/const_table.haml @@ -1,10 +1,11 @@ - constants.each do |constant_def| - const_id = constant_def.name.gsub(/_/,'-') %h3.constant{:id=>"const-#{const_id}"} - %a.permalink{:href => "#const-#{const_id}"}= "!"+constant_def.name + %a.permalink{:href => "#const-#{const_id}"}= "$"+constant_def.name %dl.constant-details.source-documentation %dt Value - %dd= constant_def.expr.to_sass(:format => :html) + %dd + %code= constant_def.expr.to_sass(:format => :html) - if constant_def.comment %dt Description %dd= format_doc constant_def.comment