Sonntag, 3. März 2013

Happy markdown stuff

This is a headline at level 1. Simple, huh?

And this is one at level 3

Hi, this is going to be a post that uses Markdown syntax.

This is a cite: “What do you mean, we’re out of rum?”

Here’s a code block:

Apple apple = new Apple();

Person p = new Person();
p.setName(“Harold”);
p.eat(apple);

Nice, huh?

After a horizontal line…


… we’re going to continue.

What about a link?

Oh, and there’s one more thing

Tables are also very useful [1]

Name Age
Harold 42
Granny Smith 76
Li’l Joe 4

And here’s all the markdown for the site:

# This is a headline at level 1. Simple, huh?

### And this is one at level 3


Hi, this is going to be a post that uses **Markdown** *syntax*.


> This is a cite: "What do you mean, we're out of rum?"


Here’s a code block:

    Apple apple = new Apple();
    
    Person p = new Person();
    p.setName(“Harold”);
    p.eat(apple);



Nice, huh?

After a horizontal line...

*******************************************


... we’re going to continue.

What about a [link](http://de.wikipedia.org/wiki/Markdown)?



## Oh, and there’s one more thing

Tables are also very useful [^fn]

[^fn]: And footnotes are also very useful.



| Name          | Age            |
| ------------- | -------------: |
| Harold        | 42             |
| Granny Smith  | 76             |
| Li'l Joe      | 4              |


  1. And footnotes are also very useful.  ↩