I need add picture to table. We can?
same sample
It is possible, but requires a little fiddling with the markdown. For example:
|normal|with theme component|
|--|--|
| ![alttext\|368x500, 50%](upload://hCVdIyePiU7syhJVHn7JFgmYvqH.webp) | ![alttext\|368x500,50%](upload://6qisyXOq8570PSXaXVyMoxduGRV.webp) |
Note that I had to ‘escape’ the pipe character (|
) with a backslash inside the image markdown, so that it didn’t break the table.
Alternatively, you can do it 100% in HTML:
Heading 1 | Heading 2 |
---|---|
<table>
<thead>
<th>Heading 1</th><th>Heading 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.