[#19] remove reduntant quote

This commit is contained in:
Alexander Machehin 2013-04-09 20:09:55 +06:00
parent 4619310319
commit 8cd494eec6
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
code_class = "class=\"#{language.downcase}\"" if language.present?
<<-HTML
<pre><code #{code_class}">#{code}</code></pre>
<pre><code #{code_class}>#{code}</code></pre>
HTML
end