主要功能: - 修改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>
45 lines
2.5 KiB
JavaScript
45 lines
2.5 KiB
JavaScript
/**
|
||
* This module is compiled away!
|
||
*
|
||
* Parsing markdown comes with a couple of constants, such as minimum or maximum
|
||
* sizes of certain sequences.
|
||
* Additionally, there are a couple symbols used inside micromark.
|
||
* These are all defined here, but compiled away by scripts.
|
||
*/
|
||
export const constants = /** @type {const} */ ({
|
||
attentionSideAfter: 2, // Symbol to mark an attention sequence as after content: `a*`
|
||
attentionSideBefore: 1, // Symbol to mark an attention sequence as before content: `*a`
|
||
atxHeadingOpeningFenceSizeMax: 6, // 6 number signs is fine, 7 isn’t.
|
||
autolinkDomainSizeMax: 63, // 63 characters is fine, 64 is too many.
|
||
autolinkSchemeSizeMax: 32, // 32 characters is fine, 33 is too many.
|
||
cdataOpeningString: 'CDATA[', // And preceded by `<![`.
|
||
characterGroupPunctuation: 2, // Symbol used to indicate a character is punctuation
|
||
characterGroupWhitespace: 1, // Symbol used to indicate a character is whitespace
|
||
characterReferenceDecimalSizeMax: 7, // `�`.
|
||
characterReferenceHexadecimalSizeMax: 6, // `�`.
|
||
characterReferenceNamedSizeMax: 31, // `∳`.
|
||
codeFencedSequenceSizeMin: 3, // At least 3 ticks or tildes are needed.
|
||
contentTypeContent: 'content',
|
||
contentTypeDocument: 'document',
|
||
contentTypeFlow: 'flow',
|
||
contentTypeString: 'string',
|
||
contentTypeText: 'text',
|
||
hardBreakPrefixSizeMin: 2, // At least 2 trailing spaces are needed.
|
||
htmlBasic: 6, // Symbol for `<div`
|
||
htmlCdata: 5, // Symbol for `<![CDATA[]]>`
|
||
htmlComment: 2, // Symbol for `<!---->`
|
||
htmlComplete: 7, // Symbol for `<x>`
|
||
htmlDeclaration: 4, // Symbol for `<!doctype>`
|
||
htmlInstruction: 3, // Symbol for `<?php?>`
|
||
htmlRawSizeMax: 8, // Length of `textarea`.
|
||
htmlRaw: 1, // Symbol for `<script>`
|
||
linkResourceDestinationBalanceMax: 32, // See: <https://spec.commonmark.org/0.30/#link-destination>, <https://github.com/remarkjs/react-markdown/issues/658#issuecomment-984345577>
|
||
linkReferenceSizeMax: 999, // See: <https://spec.commonmark.org/0.30/#link-label>
|
||
listItemValueSizeMax: 10, // See: <https://spec.commonmark.org/0.30/#ordered-list-marker>
|
||
numericBaseDecimal: 10,
|
||
numericBaseHexadecimal: 0x10,
|
||
tabSize: 4, // Tabs have a hard-coded size of 4, per CommonMark.
|
||
thematicBreakMarkerCountMin: 3, // At least 3 asterisks, dashes, or underscores are needed.
|
||
v8MaxSafeChunkSize: 10_000 // V8 (and potentially others) have problems injecting giant arrays into other arrays, hence we operate in chunks.
|
||
})
|