TIL a great way to show images in my Dendron files...
# today-i-learned
s
TIL a great way to show images in my Dendron files: USING HTML TABLES! - As looong as I can get them to render when exporting to PDF!! - In my setup, this looks great IN PREVIEW - BUT Images place into HTML Tables are NOT rendered hwen exporting to PDF Example:
Copy code
<table>
    <tr>
        <td style="border: 5px solid black; border-collapse: collapse; padding:0px; border-color: #FAFAFA;"> 
            <img src=".\assets\images\test.png"/> 
        </td>
    </tr>
</table>
Looks really nice in Preview. Its super easy to show two (or more) images on the same span using this method too