mirror of
https://github.com/CyC2018/CS-Notes.git
synced 2025-07-06 17:10:45 +08:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
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': /[{},]/
|
|
}; |