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

推荐订阅源

腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
D
DataBreaches.Net
D
Docker
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
Martin Fowler
Martin Fowler
U
Unit 42
Engineering at Meta
Engineering at Meta
IT之家
IT之家
Vercel News
Vercel News
B
Blog RSS Feed
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
G
Google Developers Blog
MongoDB | Blog
MongoDB | 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): narrow rich table alignment surface · open...
obviyus · 2026-06-24 · via Recent Commits to openclaw:main

File tree

  • packages/markdown-core/src

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,6 @@ import {

88

markdownToIRWithMeta,

99

type MarkdownLinkSpan,

1010

type MarkdownIR,

11-

type MarkdownTableAlignment,

1211

type MarkdownTableCell,

1312

type MarkdownTableMeta,

1413

renderMarkdownIRChunksWithinLimit,

@@ -347,6 +346,8 @@ type TelegramHtmlTagSupport = {

347346

attrPatterns: ReadonlyMap<string, RegExp>;

348347

};

349348
349+

type TelegramTableAlignment = NonNullable<MarkdownTableMeta["aligns"]>[number];

350+
350351

const TELEGRAM_LEGACY_HTML_TAG_SUPPORT: TelegramHtmlTagSupport = {

351352

simpleTags: TELEGRAM_SIMPLE_HTML_TAGS,

352353

attrPatterns: TELEGRAM_ATTR_HTML_TAG_PATTERNS,

@@ -976,7 +977,7 @@ function renderTelegramRichHtmlTable(table: MarkdownTableMeta): string {

976977

const renderCell = (

977978

tag: "td" | "th",

978979

value: MarkdownTableCell | undefined,

979-

align: MarkdownTableAlignment | undefined,

980+

align: TelegramTableAlignment | undefined,

980981

) => {

981982

const alignAttr = align ? ` align="${align}"` : "";

982983

return `<${tag}${alignAttr}>${renderCellValue(value)}</${tag}>`;

Original file line numberDiff line numberDiff line change

@@ -78,7 +78,7 @@ function createStyleSpan(params: MarkdownStyleSpan): MarkdownStyleSpan {

7878

return span;

7979

}

8080
81-

export type MarkdownTableAlignment = "left" | "center" | "right";

81+

type MarkdownTableAlignment = "left" | "center" | "right";

8282
8383

export type MarkdownTableData = {

8484

headers: string[];

Original file line numberDiff line numberDiff line change

@@ -131,7 +131,7 @@ const defaultPublicDeprecatedExportsByEntrypointBudget = Object.freeze({

131131

"ssrf-policy": 1,

132132

"ssrf-runtime": 1,

133133

"media-runtime": 2,

134-

"text-runtime": 190,

134+

"text-runtime": 189,

135135

"agent-runtime": 7,

136136

"plugin-runtime": 13,

137137

"channel-secret-runtime": 23,

@@ -202,11 +202,11 @@ let publicDeprecatedExportsByEntrypointBudget;

202202

try {

203203

budgets = {

204204

publicEntrypoints: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_ENTRYPOINTS", 322),

205-

publicExports: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS", 10383),

205+

publicExports: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_EXPORTS", 10381),

206206

publicFunctionExports: readBudgetEnv("OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_FUNCTION_EXPORTS", 5210),

207207

publicDeprecatedExports: readBudgetEnv(

208208

"OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_DEPRECATED_EXPORTS",

209-

3248,

209+

3247,

210210

),

211211

publicWildcardReexports: readBudgetEnv(

212212

"OPENCLAW_PLUGIN_SDK_MAX_PUBLIC_WILDCARD_REEXPORTS",

Original file line numberDiff line numberDiff line change

@@ -25,7 +25,6 @@ export {

2525

type MarkdownParseOptions,

2626

type MarkdownStyle,

2727

type MarkdownStyleSpan,

28-

type MarkdownTableAlignment,

2928

type MarkdownTableCell,

3029

type MarkdownTableMeta,

3130

} from "../../packages/markdown-core/src/ir.js";