mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 14:48:15 +08:00
33 lines
1010 B
JavaScript
33 lines
1010 B
JavaScript
import {
|
|
__commonJS
|
|
} from "./chunk-2TUXWMP5.js";
|
|
|
|
// node_modules/refractor/lang/matlab.js
|
|
var require_matlab = __commonJS({
|
|
"node_modules/refractor/lang/matlab.js"(exports, module) {
|
|
module.exports = matlab;
|
|
matlab.displayName = "matlab";
|
|
matlab.aliases = [];
|
|
function matlab(Prism) {
|
|
Prism.languages.matlab = {
|
|
comment: [/%\{[\s\S]*?\}%/, /%.+/],
|
|
string: {
|
|
pattern: /\B'(?:''|[^'\r\n])*'/,
|
|
greedy: true
|
|
},
|
|
// FIXME We could handle imaginary numbers as a whole
|
|
number: /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[eE][+-]?\d+)?(?:[ij])?|\b[ij]\b/,
|
|
keyword: /\b(?:NaN|break|case|catch|continue|else|elseif|end|for|function|if|inf|otherwise|parfor|pause|pi|return|switch|try|while)\b/,
|
|
function: /\b(?!\d)\w+(?=\s*\()/,
|
|
operator: /\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,
|
|
punctuation: /\.{3}|[.,;\[\](){}!]/
|
|
};
|
|
}
|
|
}
|
|
});
|
|
|
|
export {
|
|
require_matlab
|
|
};
|
|
//# sourceMappingURL=chunk-HF73Z2KN.js.map
|