vote up 2 vote down star

I'm helping out a friend with a non-profit site that publishes articles in issues each month. They are mostly straightforward, and I think using a markdown editor (like the wmd one here in SO) would be perfect. However, they do need the ability to have images right-aligned in a given paragraph. I can't see any way to do that with the current system - is it possible?

flag

2 Answers

vote up 3 vote down check

You can embed html in markdown, so you can do something like this:

<div style="float: right"><img src="whatever.jpg"></div>

Continue markdown text...
link|flag
vote up 0 vote down
<div style="float:left;margin:0 10px 10px 0" markdown="1">
    ![book](/images/book01.jpg)
</div>

The attribute markdown possibility inside markdown.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.