mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 23:18:17 +08:00
24 lines
443 B
JavaScript
24 lines
443 B
JavaScript
'use strict'
|
|
|
|
module.exports = gcode
|
|
gcode.displayName = 'gcode'
|
|
gcode.aliases = []
|
|
function gcode(Prism) {
|
|
Prism.languages.gcode = {
|
|
comment: /;.*|\B\(.*?\)\B/,
|
|
string: {
|
|
pattern: /"(?:""|[^"])*"/,
|
|
greedy: true
|
|
},
|
|
keyword: /\b[GM]\d+(?:\.\d+)?\b/,
|
|
property: /\b[A-Z]/,
|
|
checksum: {
|
|
pattern: /(\*)\d+/,
|
|
lookbehind: true,
|
|
alias: 'number'
|
|
},
|
|
// T0:0:0
|
|
punctuation: /[:*]/
|
|
}
|
|
}
|