Experimenting with markdown in this post.
Table of contents
- Some usefull links
- Text formating
- Tables
- Embedding a remote picture
- Code chunks
- Notification Box
- Warning Box
- Error Box
- Abbreviations
Some usefull links
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
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.