详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
// https://www.gap-system.org/Manuals/doc/ref/chap4.html
|
|
// https://www.gap-system.org/Manuals/doc/ref/chap27.html
|
|
|
|
Prism.languages.gap = {
|
|
'shell': {
|
|
pattern: /^gap>[\s\S]*?(?=^gap>|$(?![\s\S]))/m,
|
|
greedy: true,
|
|
inside: {
|
|
'gap': {
|
|
pattern: /^(gap>).+(?:(?:\r(?:\n|(?!\n))|\n)>.*)*/,
|
|
lookbehind: true,
|
|
inside: null // see below
|
|
},
|
|
'punctuation': /^gap>/
|
|
}
|
|
},
|
|
|
|
'comment': {
|
|
pattern: /#.*/,
|
|
greedy: true
|
|
},
|
|
'string': {
|
|
pattern: /(^|[^\\'"])(?:'(?:[^\r\n\\']|\\.){1,10}'|"(?:[^\r\n\\"]|\\.)*"(?!")|"""[\s\S]*?""")/,
|
|
lookbehind: true,
|
|
greedy: true,
|
|
inside: {
|
|
'continuation': {
|
|
pattern: /([\r\n])>/,
|
|
lookbehind: true,
|
|
alias: 'punctuation'
|
|
}
|
|
}
|
|
},
|
|
|
|
'keyword': /\b(?:Assert|Info|IsBound|QUIT|TryNextMethod|Unbind|and|atomic|break|continue|do|elif|else|end|fi|for|function|if|in|local|mod|not|od|or|quit|readonly|readwrite|rec|repeat|return|then|until|while)\b/,
|
|
'boolean': /\b(?:false|true)\b/,
|
|
|
|
'function': /\b[a-z_]\w*(?=\s*\()/i,
|
|
|
|
'number': {
|
|
pattern: /(^|[^\w.]|\.\.)(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?(?:_[a-z]?)?(?=$|[^\w.]|\.\.)/,
|
|
lookbehind: true
|
|
},
|
|
|
|
'continuation': {
|
|
pattern: /([\r\n])>/,
|
|
lookbehind: true,
|
|
alias: 'punctuation'
|
|
},
|
|
'operator': /->|[-+*/^~=!]|<>|[<>]=?|:=|\.\./,
|
|
'punctuation': /[()[\]{},;.:]/
|
|
};
|
|
|
|
Prism.languages.gap.shell.inside.gap.inside = Prism.languages.gap;
|