Infogami How To

Infogami tips and hacks

Markdown


*italics*italics
**bold**bold
[howto.infogami.com](http://howto.infogami.com/) howto.infogami.com
* item1
* item2
* item3
  • item 1
  • item 2
  • item 3
> quoted text
quoted text

*From the reddit site.

Inline HTML

Sometimes markdown just does not cut it, or the behavior is not what you expect. In instances like these you can drop in some inline html.

One example of this is that markdown treats one or more blank lines as an indication that you want to start a new paragraph. But what if you just want a new line? Well in that case you would have to insert a <br /> at the end of each of your lines.

Line one<br />
Line two<br />
Line three

Comes out like this:

Line one
Line two
Line three

Another good example of inline html is the markdown cheatsheet table at the top of the page.

More on markdown: