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?
|
|
You can embed html in markdown, so you can do something like this:
|
|||||||||
|
|
Embedding CSS is bad:
CSS in another file:
|
|||||||||||||||||||
|
The attribute markdown possibility inside markdown. |
|||||||
|
|
Even cleaner would be to just put |
|||||
|
|
I like to be super lazy by using tables to align images with the vertical pipe (
or
Not the most flexible solution, but it is good for most of my simple needs, is easy to read in markdown format, and you don't need to remember any CSS or raw HTML. |
|||
|
|
|
Many Markdown "extra" processors support attributes. So you can include a class name like so (PHP Markdown Extra):
or, alternatively (Kramdown):
Then, of course, you can use a stylesheet the proper way:
If yours supports this syntax, it gives you the best of both worlds: no embedded markup, and a stylesheet abstract enough to not need to be modified by your content editor. |
|||
|
|
|
As greg said you can embed html in markdown.. but one of the points of markdown is to avoid having to have extensive (or any, for that matter) css/html markup knowledge right? This is what I do: in my markdown file I simply instruct all my wiki editors to embed wrap all images with something that looks like this
(of course.. they donno what so the markdown file looks like this:
and in the css that wraps the whole page I can do whatever I want with the image tag:
of course you can do more with the css.. (in this particular case, wrapping the img with div prevents other text from wrapping against the image.. this is just an example though) but IMHO the point of markdown is that you don't want potentially non-technical people getting into the ins and outs of css/html.. it's up to you as a web-dev to make your css that wraps the page as generic and clean as possible, but then again your editors need not know about that. |
||||
|
|
|
Simplest is to wrap the image in a center tag, like so ...
Anything to do with Markdown can be tested here - http://daringfireball.net/projects/markdown/dingus Sure, |
|||||||||||
|