hexo/node_modules/prismjs/components/prism-csv.js

7 lines
137 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
// https://tools.ietf.org/html/rfc4180
Prism.languages.csv = {
'value': /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
'punctuation': /,/
};