HTML Tags In DTTG

I tried using an HTML tag to control the size of images in a Markdown document I use in class to write reports on my students’ work, like:

<img src="Image_Url" width="500" height="100">`

This worked in DEVNOthink Pro 3.8.3 but not in DEVONthink To Go 3.5. Am I missing something?

I know I can use a CSS style command for that, like:

<style type="text/css">
figure, img {
width: 20%;
height; auto;
}
</style>

But, should I not use HTML tags in docs for use on both Mac and iPad rendering of Markdown files?

Thank you,

bd

In what way did it not work?

Also, the height and width attributes of img are no longer used to control the actual size of the image in current browsers. Instead, they provide a hint about the aspect ratio.

Using CSS is actually a safer bet.

I don’t see any particular advantage of HTML elements over the usual MD approach in this case.

1 Like