refractor
Version:
Lightweight, robust, elegant virtual syntax highlighting using Prism
27 lines (25 loc) • 522 B
JavaScript
// @ts-nocheck
/**
* @import {Refractor} from '../lib/core.js'
*/
gcode.displayName = 'gcode'
gcode.aliases = []
/** @param {Refractor} Prism */
export default 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: /[:*]/
}
}