表に画像を追加したいのですが、可能ですか?
同様のサンプル
可能です。ただし、少しだけ Markdown の調整が必要です。例えば:
| normal | with theme component |
|---|---|
![]() |
![]() |
|normal|with theme component|
|--|--|
|  |  |
テーブルを壊さないように、画像の Markdown 内のパイプ文字(|)をバックスラッシュでエスケープする必要があった点にご注意ください。
あるいは、HTML で完全に実装することも可能です:
| 見出し 1 | 見出し 2 |
|---|---|
![]() |
![]() |
<table>
<thead>
<th>見出し 1</th><th>見出し 2</th>
</thead>
<tr>
<td><img src="https://d11a6trkgmumsb.cloudfront.net/original/3X/7/b/7b8b5200494d19732663fe2dce2beefc5fc43a33.webp" width=200></td>
<td><img src="https://d11a6trkgmumsb.cloudfront.net/original/3X/2/d/2d060e4a585c11b36bd976ab382b3196a384ef77.webp" width=200/></td>
</tr>
</table>
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.