feat(hololake): ship language platform 0.7.0

This commit is contained in:
冰朔 2026-08-09 03:37:41 +08:00
commit 5105ec5e32
47 changed files with 4566 additions and 398 deletions

View file

@ -0,0 +1,6 @@
const IMPORT_COLLISION_SUFFIX = /\s+[0-9a-f]{24,64}(?=\.md$|$)/iu;
/** 只清理导入器为避免重名附加的散列;不改动真实文档标题和文件。 */
export function cleanDisplayText(value: string): string {
return value.replace(IMPORT_COLLISION_SUFFIX, '').trim();
}