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?

link|improve this question

Note that depending on the platform you can add filters to markdown. So it may be possible to add syntax that specifies alignment. – Jordan Reiter Apr 4 at 18:26
feedback

5 Answers

up vote 10 down vote accepted

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|improve this answer
9  
Clean it up & standardize by strippnig the unnecessary div and adding a closing slash to the img tag, respectively, i.e. `<img style="float:right" src="whatever.jpg" /> – MattDiPasquale Nov 14 '10 at 14:54
feedback

Embedding CSS is bad:

![Flowers](/flowers.jpeg)

CSS in another file:

img[alt=Flowers] { float: right; }
link|improve this answer
4  
What? Now all of a sudden you have to edit an external file every time you change the markdown content? Doesn't sound like a good solution to me. – Jordan Reiter Jul 20 '11 at 18:21
@JordanReiter Everyone here has written a program consisting of more than one file where logic is spread/organized over many locations. We do it on purpose for maintainability. Why is this so painfully and terribly different? – z5h Apr 4 at 17:43
Markdown lets non-programmer users create content and it shouldn't be dependent on files that have to be directly accessed and edited on the server. Another example: I think it's totally normal to hard-code the names of fields in a database into your code but a mistake to hard-code based on the value of a field in your database (i.e. if product.name == 'Tulips') because you can't depend on the stability of the value. All it takes is someone changing Flowers to Flower and suddenly that image pops out of view. Also, they have to call you every time they add an image! – Jordan Reiter Apr 4 at 18:24
Thanks, I've found this very handy. The accepted solution does not seem to work on a Jekyll-based github-hosted site. I set the alt text to be "floatright", since I don't care what alttext is, this is a nice way to easily control my image placement in markdown. – cboettig Apr 12 at 0:08
@cboettig This is severe misuse of the alt tag. It is supposed to be a textual description of the image for people who can't see the image. – nathang May 15 at 23:37
show 1 more comment
feedback
<div style="float:left;margin:0 10px 10px 0" markdown="1">
    ![book](/images/book01.jpg)
</div>

The attribute markdown possibility inside markdown.

link|improve this answer
1  
Nope. Not on github markdown. – Maletor Aug 19 '11 at 7:56
Worked to me. I am not using github. Thanks @raphox. – Hugo Tavares Feb 23 at 15:13
feedback

Even cleaner would be to just put p#given img { float: right } in the style sheet, or in the <head> and wrapped in style tags. Then, just use the markdown ![Alt text](/path/to/img.jpg).

link|improve this answer
Can you plz elaborate? – zvolkov Aug 1 '11 at 20:56
feedback

Simplest is to wrap the image in a center tag, like so ...

<center>![Alt test](http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png)</center>

Anything to do with Markdown can be tested here - http://daringfireball.net/projects/markdown/dingus

Sure, <center> may be deprecated, but it's simple and it works!

link|improve this answer
Just noticed the OP asked for right alignment -- I was trying to center an image when I stumbled onto this answer. – yoyo Dec 15 '11 at 6:59
2  
No, never use center. – Jordan Reiter Apr 4 at 18:25
feedback

Your Answer

 
or
required, but never shown

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