ISO-Share/node_modules/prismjs/components/prism-csv.js

7 lines
131 B
JavaScript
Raw Normal View History

2024-11-26 21:16:11 +01:00
// https://tools.ietf.org/html/rfc4180
Prism.languages.csv = {
'value': /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
'punctuation': /,/
};