完成世界书、骰子、apiconfig页面处理
This commit is contained in:
74
frontend/node_modules/refractor/lang/bqn.js
generated
vendored
Normal file
74
frontend/node_modules/refractor/lang/bqn.js
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
// @ts-nocheck
|
||||
/**
|
||||
* @import {Refractor} from '../lib/core.js'
|
||||
*/
|
||||
bqn.displayName = 'bqn'
|
||||
bqn.aliases = []
|
||||
|
||||
/** @param {Refractor} Prism */
|
||||
export default function bqn(Prism) {
|
||||
Prism.languages.bqn = {
|
||||
shebang: {
|
||||
pattern: /^#![ \t]*\/.*/,
|
||||
alias: 'important',
|
||||
greedy: true
|
||||
},
|
||||
comment: {
|
||||
pattern: /#.*/,
|
||||
greedy: true
|
||||
},
|
||||
'string-literal': {
|
||||
pattern: /"(?:[^"]|"")*"/,
|
||||
greedy: true,
|
||||
alias: 'string'
|
||||
},
|
||||
'character-literal': {
|
||||
pattern: /'(?:[\s\S]|[\uD800-\uDBFF][\uDC00-\uDFFF])'/,
|
||||
greedy: true,
|
||||
alias: 'char'
|
||||
},
|
||||
function: /•[\w¯.∞π]+[\w¯.∞π]*/,
|
||||
'dot-notation-on-brackets': {
|
||||
pattern: /\{(?=.*\}\.)|\}\./,
|
||||
alias: 'namespace'
|
||||
},
|
||||
'special-name': {
|
||||
pattern: /(?:𝕨|𝕩|𝕗|𝕘|𝕤|𝕣|𝕎|𝕏|𝔽|𝔾|𝕊|_𝕣_|_𝕣)/,
|
||||
alias: 'keyword'
|
||||
},
|
||||
'dot-notation-on-name': {
|
||||
pattern: /[A-Za-z_][\w¯∞π]*\./,
|
||||
alias: 'namespace'
|
||||
},
|
||||
'word-number-scientific': {
|
||||
pattern: /\d+(?:\.\d+)?[eE]¯?\d+/,
|
||||
alias: 'number'
|
||||
},
|
||||
'word-name': {
|
||||
pattern: /[A-Za-z_][\w¯∞π]*/,
|
||||
alias: 'symbol'
|
||||
},
|
||||
'word-number': {
|
||||
pattern:
|
||||
/[¯∞π]?(?:\d*\.?\b\d+(?:e[+¯]?\d+|E[+¯]?\d+)?|¯|∞|π)(?:j¯?(?:(?:\d+(?:\.\d+)?|\.\d+)(?:e[+¯]?\d+|E[+¯]?\d+)?|¯|∞|π))?/,
|
||||
alias: 'number'
|
||||
},
|
||||
'null-literal': {
|
||||
pattern: /@/,
|
||||
alias: 'char'
|
||||
},
|
||||
'primitive-functions': {
|
||||
pattern: /[-+×÷⋆√⌊⌈|¬∧∨<>≠=≤≥≡≢⊣⊢⥊∾≍⋈↑↓↕«»⌽⍉/⍋⍒⊏⊑⊐⊒∊⍷⊔!]/,
|
||||
alias: 'operator'
|
||||
},
|
||||
'primitive-1-operators': {
|
||||
pattern: /[`˜˘¨⁼⌜´˝˙]/,
|
||||
alias: 'operator'
|
||||
},
|
||||
'primitive-2-operators': {
|
||||
pattern: /[∘⊸⟜○⌾⎉⚇⍟⊘◶⎊]/,
|
||||
alias: 'operator'
|
||||
},
|
||||
punctuation: /[←⇐↩(){}⟨⟩[\]‿·⋄,.;:?]/
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user