prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
30 lines (29 loc) • 654 B
JavaScript
import { a as languages } from "../../core-8vQkh0Rd.js";
//#region src/prism/languages/false.js
/**
* Based on the manual by Wouter van Oortmerssen.
*
* @see {@link https://github.com/PrismJS/prism/issues/2801#issue-829717504}
*/
languages["false"] = {
"comment": /\{[^}]*\}/,
"string": /"[^"]*"/g,
"character-code": {
pattern: /'[^]/,
alias: "number"
},
"assembler-code": {
pattern: /\d+`/,
alias: "important"
},
"number": /\d+/,
"operator": /[#$?'.,:;@\\_`~ßø%&|^!=>/*+-]/,
"punctuation": /[[\]]/,
"variable": /[a-z]/,
"non-standard": {
pattern: /[()<BDO®]/,
alias: "bold"
}
};
//#endregion
//# sourceMappingURL=false.js.map