详细说明: - 基于文旅订单班框架复制创建food-order-demo项目 - 修改端口配置为4174避免冲突 - 更新LandingPage为青莳轻食主题(绿色健康风格) - 重新定义7个食品行业专业Agent: * 市场研究专家:轻食市场分析、客群画像 * 营养配方师:营养成分配比、低卡高蛋白设计 * 供应链管理专家:有机食材供应、溯源体系 * 品牌策划师:品牌定位、店铺空间布局 * 财务分析师:投资预算、ROI分析 * 运营管理专家:运营流程、品控标准 * 食品创业导师:中央协调、方案整合 - 创建专用启动脚本start.sh - 验证系统可正常运行在端口4174 - 实现代码复用率90%,符合预期目标 影响文件: web_frontend/food-order-demo/ 技术栈: React 18 + TypeScript + Tailwind CSS + Zustand
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.
|
||
})
|