source: node_modules/prismjs/components/prism-arff.js@ e48199a

main
Last change on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 233 bytes
RevLine 
[d24f17c]1Prism.languages.arff = {
2 'comment': /%.*/,
3 'string': {
4 pattern: /(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,
5 greedy: true
6 },
7 'keyword': /@(?:attribute|data|end|relation)\b/i,
8 'number': /\b\d+(?:\.\d+)?\b/,
9 'punctuation': /[{},]/
10};
Note: See TracBrowser for help on using the repository browser.