Experimenting with markdown in this post.

Table of contents

  1. Some usefull links
  2. Text formating
  3. Tables
  4. Embedding a remote picture
  5. Code chunks
  6. Notification Box
  7. Warning Box
  8. Error Box
  9. Abbreviations

This Link provides a quick reference to Kramdown, which is the markdown dialect used by jekyll.

Text formating

Bold Text
The quick brown fox jumps over the lazy dog

Italic Text
The quick brown fox jumps over the lazy dog

Tables

Number Next number Previous number
Five Six Four
Ten Eleven Nine
Seven Eight Six
Two Three One

Embedding a remote picture

Jekyll

Code chunks

Here’s a code chunk:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code with syntax highlighting:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code yet again but with line numbers:

1
2
3
4
var foo = function(x) {
  return(x + 5);
}
foo(3)

Notification Box

Note: This is a notification box.

Warning Box

Warning: This is a warning box.

Error Box

Error: This is an error box.

Abbreviations

Let’s see if the abbreviation for HTML will work. Simply hover over the HTML text.