prism-csv.js 131 B

123456
  1. // https://tools.ietf.org/html/rfc4180
  2. Prism.languages.csv = {
  3. 'value': /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
  4. 'punctuation': /,/
  5. };