fix(mindspace): 生成页面统一使用中文友好无衬线字体

页脚品牌行、纯文字页面模板与技能提示词此前用 Georgia/Times 衬线体,中文渲染
效果差;统一改为系统无衬线字体栈(PingFang SC / Microsoft YaHei 等)。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-07-07 10:55:07 +08:00
parent 0d6258d00a
commit 7edafefc56
6 changed files with 10 additions and 5 deletions
+1
View File
@@ -39,6 +39,7 @@ test('injectPlatformBrandVisibilityStyle adds readable brand css', () => {
const result = injectPlatformBrandVisibilityStyle(html);
assert.match(result, new RegExp(`id="${PLATFORM_BRAND_STYLE_ID}"`));
assert.match(result, /opacity:\s*1 !important/);
assert.match(result, /font-family:.*PingFang SC/);
});
test('ensurePlatformBrandFooter appends brand line when marker is missing', () => {