mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
Add NaN support
This commit is contained in:
parent
7dd4e6ecee
commit
ada6c926dc
@ -271,6 +271,20 @@ const elements = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// nan
|
||||||
|
(code, i, source) => {
|
||||||
|
const prev = source[i - 1];
|
||||||
|
if (prev && /[a-zA-Z]/.test(prev)) return null;
|
||||||
|
if (code.substr(0, 3) == 'NaN') {
|
||||||
|
return {
|
||||||
|
html: `<span class="nan">NaN</span>`,
|
||||||
|
next: 3
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
// keyword
|
// keyword
|
||||||
(code, i, source) => {
|
(code, i, source) => {
|
||||||
const prev = source[i - 1];
|
const prev = source[i - 1];
|
||||||
|
@ -137,6 +137,7 @@ pre
|
|||||||
color #42b983
|
color #42b983
|
||||||
|
|
||||||
.number
|
.number
|
||||||
|
.nan
|
||||||
color #ae81ff
|
color #ae81ff
|
||||||
|
|
||||||
.var:not(.keyword)
|
.var:not(.keyword)
|
||||||
|
Loading…
Reference in New Issue
Block a user