Images
Add a CSS class
Natively, markdown does not provide support for CSS class. Hacks exist.
![image alt text](/path/to/my/image#my-css-class "image title")
Then in your stylesheets:
img[src*="#my-css-class]{
width: 250px;
display: block;
align: auto;
}
Hacks from here