I tried all the recommendations from the following page, none of them lets me control the size of the images in HTML output. Can you suggest a workaround?

```@raw html
</td></tr></tbody></table>
````
for
(see http://juliaml.github.io/LossFunctions.jl/stable/#Loss-Functions-for-Regression-1)
also note. if it is something repetitive (in the sense that you have a lot of those tables with fixed sized images) you can also just set the width in a custom .css file
Most helpful comment
one possibility would be to just do the whole table in html
i use this workaround to mix html with markdown. Its the opposite of your use-case though.
`
@raw html```@raw html
````
for
(see http://juliaml.github.io/LossFunctions.jl/stable/#Loss-Functions-for-Regression-1)
All 6 comments
The
![]()syntax doesn't support image size. However, you should be able to use the@rawblock to insert custom HTML with an<img>tag as follows:markdown ```@raw html <img src="..." height="..." width="..."> ```Thanks!
What if you want to put the image in a table? I tried this:
but got this in the rendered document:

(Yes, I know it's silly to use a table for one image, but this will be a placeholder for more "thumbnails".)
one possibility would be to just do the whole table in html
i use this workaround to mix html with markdown. Its the opposite of your use-case though.
`
@raw html```@raw html
````
for
(see http://juliaml.github.io/LossFunctions.jl/stable/#Loss-Functions-for-Regression-1)
also note. if it is something repetitive (in the sense that you have a lot of those tables with fixed sized images) you can also just set the width in a custom
.cssfilee.g.
i do something like that here: http://juliaml.github.io/LossFunctions.jl/stable/losses/distance/
Cool. I am hoping to replicate something like http://scikit-image.org/docs/stable/auto_examples/ for JuliaImages. Time to learn CSS & HTML!
Related issues