After a lot of trial and error I finally found out how to properly embed and render HTML code in .md files fed to Documenter.jl, but now I’m finding that the images aren’t showing up in a table I developed to place two images side-by-side.
I’m sure it’s a very very simple solution that I’m just not seeing for some reason. You’ll see in the docs here that the images are missing.
Here’s the html code I’m using:
<table border="0"><tr>
<td>
<figure>
<img src='figs/sources_block_of_1.png' alt='missing' /><br>
<figcaption><em>Block size of 1</em></figcaption>
</figure>
</td>
<td>
<figure>
<img src='figs/sources_block_of_3.png' alt='missing' /><br>
<figcaption><em>Block size of 3</em></figcaption>
</figure>
</td>
</tr></table>
The images are housed in my package repo here.
Anyone know what I’m missing here?