Is there any extension in the md image syntax to float a picture to the left?
If not, how can we do this with HTML?
From the suggested archive I am trying this
{.float-left} We rent space at the Church of Living Hope for our rehearsals. We have the use of two large rooms, as well as a storage room forour percussion instruments. The church is located at 1, Consumers Drive, off Lansdowne, next to the OPP Offices, and across from the shopping centre on Landsdowne East.
But I just get the picture with one line beside it and the rest below
And the line starts with {.float-left}
As @arank said, this can be achieved without extended markdown. It may also be necessary to clear the float after each block, the following works for me:
---
title: FLOATS
---
##Floats
![](leftfloat.jpg?classes=float-left)
### Blah Blah
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.
<div style="clear: both;"></div>
![](rightfloat.jpg?classes=float-right)
### Blah Blah
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.
<div style="clear: both;"></div>
![](leftfloat2.jpg?classes=float-left)
### Blah Blah
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.