Hi David, >> There's still a little problem though when adding a caption: >> >> --8<---------------cut here---------------start------------->8--- >> #+CAPTION: toto >> [[file:toto.png]] >> --8<---------------cut here---------------end--------------->8--- > > Indeed. I overlooked a stray <p> tag. This one is fixed by now.
Again, thanks a lot for the fix: it's perfect at the level of the image now. There's still a small problem with the caption being escaped (I thought it would disappear with your previous fix, that's why I didn't add it to my example, so here it is now). If I have this: --8<---------------cut here---------------start------------->8--- #+CAPTION: toto\trade [[file:toto.png]] --8<---------------cut here---------------end--------------->8--- It is exported to: --8<---------------cut here---------------start------------->8--- <div class="figure"> <p><img src="toto.png" alt="toto.png" /></p> <p>toto&trade;</p> </div> --8<---------------cut here---------------end--------------->8--- While I would expect (and it was like that before): --8<---------------cut here---------------start------------->8--- <div class="figure"> <p><img src="toto.png" alt="toto.png" /></p> <p>toto™</p> </div> --8<---------------cut here---------------end--------------->8--- Thanks. Regards, Francesco