blob: c13c22de39bf3997af0e4f8ee1cd26559f02b489 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Prism.languages.arff = {
'comment': /%.*/,
'string': {
pattern: /(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,
greedy: true
},
'keyword': /@(?:attribute|data|end|relation)\b/i,
'number': /\b\d+(?:\.\d+)?\b/,
'punctuation': /[{},]/
};
|