Files
Agent-n8n/backups/exhibition-demo-backup-20250928-210916/node_modules/highlight.js/lib/languages/openscad.js
Yep_Q 67f5dfbe50 feat: 实现多订单班支持系统
主要功能:
- 修改RequirementModal支持12个订单班选择
- 添加OrderClassIconMap图标映射组件
- Store中添加selectedOrderClass状态管理
- WorkflowPage支持传递orderClass参数
- web_result添加URL参数切换功能
- 创建order-class-handler.js动态处理页面主题

技术改进:
- 创建软链接关联订单班数据目录
- 生成wenlu.json和food.json数据结构
- 删除重复的web_result目录
- 添加测试页面test-order-class.html

影响范围:
- 展会策划系统现支持12个订单班
- 结果展示页面自动适配不同订单班主题
- 用户可选择不同行业生成对应方案

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 10:02:15 +08:00

82 lines
2.1 KiB
JavaScript

/*
Language: OpenSCAD
Author: Dan Panzarella <alsoelp@gmail.com>
Description: OpenSCAD is a language for the 3D CAD modeling software of the same name.
Website: https://www.openscad.org
Category: scientific
*/
function openscad(hljs) {
const SPECIAL_VARS = {
className: 'keyword',
begin: '\\$(f[asn]|t|vp[rtd]|children)'
};
const LITERALS = {
className: 'literal',
begin: 'false|true|PI|undef'
};
const NUMBERS = {
className: 'number',
begin: '\\b\\d+(\\.\\d+)?(e-?\\d+)?', // adds 1e5, 1e-10
relevance: 0
};
const STRING = hljs.inherit(hljs.QUOTE_STRING_MODE, {
illegal: null
});
const PREPRO = {
className: 'meta',
keywords: {
'meta-keyword': 'include use'
},
begin: 'include|use <',
end: '>'
};
const PARAMS = {
className: 'params',
begin: '\\(',
end: '\\)',
contains: [
'self',
NUMBERS,
STRING,
SPECIAL_VARS,
LITERALS
]
};
const MODIFIERS = {
begin: '[*!#%]',
relevance: 0
};
const FUNCTIONS = {
className: 'function',
beginKeywords: 'module function',
end: /=|\{/,
contains: [
PARAMS,
hljs.UNDERSCORE_TITLE_MODE
]
};
return {
name: 'OpenSCAD',
aliases: [ 'scad' ],
keywords: {
keyword: 'function module include use for intersection_for if else \\%',
literal: 'false true PI undef',
built_in: 'circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign'
},
contains: [
hljs.C_LINE_COMMENT_MODE,
hljs.C_BLOCK_COMMENT_MODE,
NUMBERS,
PREPRO,
STRING,
SPECIAL_VARS,
MODIFIERS,
FUNCTIONS
]
};
}
module.exports = openscad;