Change 'grey' to 'gray' in HTML/CSS output

Browsers support both, but only IE8+. Source: https://developer.mozilla.org/en-US/docs/CSS/color_value#1
This commit is contained in:
zofrex 2013-03-07 22:31:40 +00:00
parent 1ff98bf1b4
commit 56a61a6c3a

View File

@ -87,7 +87,7 @@ function stylize(str, style) {
'strikethrough' : ['<del>', '</del>'],
//grayscale
'white' : ['<span style="color:white;">', '</span>'],
'grey' : ['<span style="color:grey;">', '</span>'],
'grey' : ['<span style="color:gray;">', '</span>'],
'black' : ['<span style="color:black;">', '</span>'],
//colors
'blue' : ['<span style="color:blue;">', '</span>'],