Topic: Word Wrap around images
is there a way to make the words wrap around an image when editing a page using textile or markdown
You are not logged in. Please login or register.
is there a way to make the words wrap around an image when editing a page using textile or markdown
Yes there is. First you need to add this in your css file:
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }then you do something like this in textile (don't know for markdown):
!(left)/path/to/your/image.jpg!
!(right)/path/to/your/image.jpg!then you do something like this in textile (don't know for markdown):
I'm fairly certain that Markdown doesn't include support for adding id's or classes like Textile does. I use them this way:
- Markdown = faster to write, but fewer options
- Textile = good layout support, but more complex markup (= slower to write/learn)
FWIW
Posts [ 3 ]