mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 03:18:15 +08:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
'use strict'
|
|
|
|
module.exports = csv
|
|
csv.displayName = 'csv'
|
|
csv.aliases = []
|
|
function csv(Prism) {
|
|
// https://tools.ietf.org/html/rfc4180
|
|
Prism.languages.csv = {
|
|
value: /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
|
|
punctuation: /,/
|
|
}
|
|
}
|