-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
I like to use Boostnote as a multi-purpose notebook for my research. As such, I place many images in pages. I do so using html tags of the form;
<figure><center>
<a href="PATH_TO_LOCAL_FOLDER_CONTAINING_IMAGE"><img src="PATH_TO_LOCAL_IMAGE"></a>
<figcaption><b>FIGURE CAPTION</b></figcaption>
</center></figure>I have a figure class CSS snippet that I can include to tweak the figure scaling and placement, and to include word wrapping.
With the latest update, my figures no longer show. Reading your issues page, I understand that this is to do with unsafe html tags? Can somebody explain if this is indeed unsafe in the case of a local notebook with local images? What would be the safe alternative in this case? I could switch to markdown syntax, but this loses out on some of the formatting options (as far as I am aware). I see the option to allow unsafe tags, which works for now, I just wanted to learn a little more on the topic.
Thanks