created: 20190309230829719
creator: Gloom
modified: 20190310000045254
modifier: Gloom
tags: 
title: test113

The ways I display images (including svg's) without using transclusion.  Maybe it would be of help with your endeavour...

Test using external images in the same directory of wiki.  You can copy and paste the code below or import the attached tiddler to expetiment with.  Change the file names to match your local images.

3 ways to display jpg's in wikitext tables, (doesn't work for svg's (see further below))

| [img[wfortean.jpg]] |<$image source="wfortean.jpg"/> | <img src="file:wfortean.jpg" width="" height="" /> |

test svg display

<img src="file:arrowright2down2.svg" width="25%" height="" />

the 3 ways to display images in wikitext tables, doesn't work for svg's (but see further below)

| [img[arrowright2down2.svg]] | <$image source="arrowright2down2.svg"/> | <img src="file:arrowright2down2.svg" width="25%" height="" /> |

using html markup for tables, all 3 ways to display images work for jpg's and svg's

<table><tr>
<td>[img[wfortean.jpg]]</td>
<td><$image source="wfortean.jpg"/></td>
<td><img src="file:wfortean.jpg" width="" height="" /></td>
</tr><tr>
<td>[img[arrowright2down2.svg]]</td>
<td><$image source="arrowright2down2.svg"/></td>
<td><img src="file:arrowright2down2.svg" width="" height="" /></td>
</tr></table>