Skip to content

Commit

Permalink
ansi2html: fix css classnames in SPAN tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jul 24, 2010
1 parent 272f163 commit a877073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ansi2html
Expand Up @@ -39,7 +39,7 @@ def classnames(code)
codes << COLORS[color_code - 30][0]
end
codes << 'bright' if codes.delete(1)
codes.map { |c| ".ansi-#{c}" }.join('')
codes.map { |c| "ansi-#{c}" }.join(' ')
end

open = false
Expand Down

0 comments on commit a877073

Please sign in to comment.