docs(channel-deployment): fix broken s4-3a screenshot in ZH MS Teams section#184
Merged
Merged
Conversation
…section The alt attribute contained unescaped ASCII double quotes (复制"值"这一列), which broke Vue template compilation in VitePress — the img tag rendered as escaped literal text on the live page instead of the image. Replaced with Chinese curly quotes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
tyler-0xffff
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题
PR #183 上线后逐图核对发现:第4步的截图
msteams-zh-s4-3a-v1.png(客户端密码已创建——立即复制"值")在线上页面没有渲染成图片,而是显示为一段转义后的原始 HTML 代码文本。其余 47 张截图均正常。
原因
该 img 标签的
alt属性内含未转义的英文直引号(复制"值"这一列),导致 VitePress 的 Vue 模板编译失败,整个标签被当作字面文本输出。修复
将 alt 文本中的英文直引号改为中文弯引号(
复制值这一列),1 行改动。已全文扫描确认无其他 alt 属性存在同类问题。🤖 Generated with Claude Code