原文(日本語に翻訳)
画像参照リンクから下線スタイルを削除しました
原文(英語)
Removed underline styling from image reference links
概要
Claude Code v2.1.0で削除された、画像参照リンクの下線スタイルです。以前のバージョンでは、Markdown形式の画像参照()が通常のリンクと同様に下線付きで表示され、視覚的に混乱を招く問題がありました。この削除により、画像リンクは下線なしで表示され、テキストリンクと明確に区別できるようになりました。
削除前の動作
markdown
# ドキュメント内の画像
See the architecture diagram: 
# 削除前の表示:
See the architecture diagram: Architecture
̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲ ̲
(下線付き)
# 問題点:
# - テキストリンクと区別しにくい
# - クリック可能と誤解しやすい
# - 視覚的に煩雑削除後の動作
markdown
# 同じドキュメント
See the architecture diagram: 
# 削除後の表示:
See the architecture diagram: 🖼️ Architecture
(下線なし)
# ✓ 画像リンクと明確
# ✓ すっきりした表示
# ✓ テキストリンクと区別しやすい実践例
ドキュメント with 画像
markdown
# README.md
## Architecture
The system consists of three layers:
1. Frontend - 
2. Backend - 
3. Database - 
See [documentation](./docs) for details.
# 削除後の表示:
# 画像: 下線なし、アイコン付き
# リンク: 下線あり
# ✓ 一目で区別できる混在するリンク
markdown
For the [API guide](./api.md), refer to the
 which shows the
complete [authentication process](./auth.md).
# 表示:
# [API guide] - 下線あり(リンク)
# ![API flow diagram] - 下線なし(画像)
# [authentication process] - 下線あり(リンク)
# ✓ 種類が明確注意点
- Claude Code v2.1.0で削除
- 削除対象:
- 画像参照:
 - インライン画像:

- 画像参照:
- 影響なし:
- テキストリンク:
[text](url)- 下線あり - 直リンク:
<url>- 下線あり
- テキストリンク:
- 画像表示の改善:
- アイコン: 🖼️ で画像と表示
- ツールチップ: alt テキストを表示
- プレビュー: カーソルで画像プレビュー(対応ターミナル)