惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(telegram): preserve fenced code languages (#85209) · ...
leno23 · 2026-05-22 · via Recent Commits to openclaw:main

@@ -20,6 +20,7 @@ type RenderEnv = {

2020

type MarkdownToken = {

2121

type: string;

2222

content?: string;

23+

info?: string;

2324

children?: MarkdownToken[];

2425

attrs?: [string, string][];

2526

attrGet?: (name: string) => string | null;

@@ -40,6 +41,7 @@ export type MarkdownStyleSpan = {

4041

start: number;

4142

end: number;

4243

style: MarkdownStyle;

44+

language?: string;

4345

};

44464547

export type MarkdownLinkSpan = {

@@ -54,6 +56,18 @@ export type MarkdownIR = {

5456

links: MarkdownLinkSpan[];

5557

};

565859+

function createStyleSpan(params: MarkdownStyleSpan): MarkdownStyleSpan {

60+

const span: MarkdownStyleSpan = {

61+

start: params.start,

62+

end: params.end,

63+

style: params.style,

64+

};

65+

if (params.language) {

66+

span.language = params.language;

67+

}

68+

return span;

69+

}

70+5771

export type MarkdownTableData = {

5872

headers: string[];

5973

rows: string[][];

@@ -325,15 +339,27 @@ function renderInlineCode(state: RenderState, content: string) {

325339

target.styles.push({ start, end: start + content.length, style: "code" });

326340

}

327341328-

function renderCodeBlock(state: RenderState, content: string) {

342+

function resolveFenceLanguage(info: string | undefined): string | undefined {

343+

const language = info?.trim().split(/\s+/, 1)[0]?.trim();

344+

return language || undefined;

345+

}

346+347+

function renderCodeBlock(state: RenderState, content: string, info?: string) {

329348

let code = content ?? "";

330349

if (!code.endsWith("\n")) {

331350

code = `${code}\n`;

332351

}

333352

const target = resolveRenderTarget(state);

334353

const start = target.text.length;

335354

target.text += code;

336-

target.styles.push({ start, end: start + code.length, style: "code_block" });

355+

target.styles.push(

356+

createStyleSpan({

357+

start,

358+

end: start + code.length,

359+

style: "code_block",

360+

language: resolveFenceLanguage(info),

361+

}),

362+

);

337363

if (state.env.listStack.length === 0) {

338364

target.text += "\n";

339365

}

@@ -732,7 +758,7 @@ function renderTokens(tokens: MarkdownToken[], state: RenderState): void {

732758

break;

733759

case "code_block":

734760

case "fence":

735-

renderCodeBlock(state, token.content ?? "");

761+

renderCodeBlock(state, token.content ?? "", token.info);

736762

break;

737763

case "html_block":

738764

case "html_inline":

@@ -834,7 +860,7 @@ function clampStyleSpans(spans: MarkdownStyleSpan[], maxLength: number): Markdow

834860

const start = Math.max(0, Math.min(span.start, maxLength));

835861

const end = Math.max(start, Math.min(span.end, maxLength));

836862

if (end > start) {

837-

clamped.push({ start, end, style: span.style });

863+

clamped.push(createStyleSpan({ start, end, style: span.style, language: span.language }));

838864

}

839865

}

840866

return clamped;

@@ -869,6 +895,7 @@ function mergeStyleSpans(spans: MarkdownStyleSpan[]): MarkdownStyleSpan[] {

869895

if (

870896

prev &&

871897

prev.style === span.style &&

898+

prev.language === span.language &&

872899

// Blockquotes are container blocks. Adjacent blockquote spans should not merge or

873900

// consecutive blockquotes can "style bleed" across the paragraph boundary.

874901

(span.start < prev.end || (span.start === prev.end && span.style !== "blockquote"))

@@ -908,11 +935,14 @@ function sliceStyleSpans(

908935

if (!bounds) {

909936

continue;

910937

}

911-

sliced.push({

912-

start: bounds.start - start,

913-

end: bounds.end - start,

914-

style: span.style,

915-

});

938+

sliced.push(

939+

createStyleSpan({

940+

start: bounds.start - start,

941+

end: bounds.end - start,

942+

style: span.style,

943+

language: span.language,

944+

}),

945+

);

916946

}

917947

return mergeStyleSpans(sliced);

918948

}