This repository has been archived on 2026-06-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flights_web_raw/node_modules/prismjs/components/prism-arff.js
T

11 lines
233 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': /[{},]/
};