mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 23:19:14 +08:00
10 lines
233 B
Text
10 lines
233 B
Text
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': /[{},]/
|
|
};
|