Skip to main content
danieln.de

All the Markdown Features I'm ever likely to use

·3 mins

Some general bla bla about the article.
This is part of the summary presented in the post list. Inline Code here. There should be quite a bit of content so that the summary in the list view of posts does not include stranger things from down below. To his end, here some Lorem Ipsum: Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Links work too: Wikipedia.

Some math for testing:

$$ \frac{n!}{k!(n-k)!} = \binom{n}{k} $$

A paragraph (with a footnote) #

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. That’s “some” text with a footnote.1

graph LR; A[Lemons]-->B[Lemonade]; B-->C[Profit]

Quotes are nice:

Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.

 — not Marcus Aurelius, actually

Some code with highlighted return lines:

1
2
3
4
5
6
7
8
def __getattribute__(self, name):
    if name == 'insert' and self.__root:
        return object.__getattribute__(self, name)
    elif name == 'insert' and not self.__root:
        print("This is not a root node.")
        raise AttributeError
    else:
        return object.__getattribute__(self, name)
run on playground

Second level header, the other is reserved for the top spot #

A list, but first some general bla bla to get some kind of paragraph going in this place. If it looks to empty, the following list will just hang around in place, looking weird:

  • bla
  • bla
  • blah
Don’t forget to follow me on Twitter.

Third level header (I’ll never use fourth…) #

Lorem ipsum dolor sit amet consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet:

  1. bla
  2. bla
  3. blah

And finally, a todo list:

  • check all features
  • make mathjax and fonts load locally
  • profit??

Tables, whoo hoo #

Sepal.LengthSepal.WidthPetal.LengthPetal.WidthSpecies
5.13.51.40.2setosa
4.93.01.40.2setosa
4.73.21.30.2setosa
4.63.11.50.2setosa
5.03.61.40.2setosa
5.43.91.70.4setosa

Thats it, looking good? #

thumbs up


  1. “Some”, because I wanted to test the quotation marks. ↩︎