There is no simple option for adding images into posts. Or not yet anyway.
At the moment you have to do it manually by grabbing the URL of an attachment to the page and using markdown syntax to add the image. We use "extended" markdown, so a class can be applied to an image, and there are three special classes available to help you lay out your images correctly - left
, right
and center
.
The extended markdown format we use is:
{.class}
Here are three examples:

Left alignmentLeft alignment

Left alignment
This uses float: left;
in the CSS. This example uses: {.left}

Right alignmentRight alignment

Right alignment
This uses float: right;
in the CSS. This example uses: {.right}
Centered
A simpler display - this resizes and centers the image. Here we use: {.center}
. It doesn't use float
so should be placed appropriately.

Centered