mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 00:39:30 +08:00
16 lines
295 B
Text
16 lines
295 B
Text
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': /[:*]/
|
|
};
|