Hello everyone who’s reading this, I’m glad you just found another place to chill out.

Thanks

Many thanks to daattali who created this Beautiful project that allows me to build this website in minutes! You should be able to see how many stars, forks and follows this project has gained right under the subtitle of this article.

Testing

Note: The following contents are just a test of markdown syntax, you can ignore it if not interested.

How about a yummy crepe?

Crepe

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)

Boxes

You can add notification, warning and error boxes like this:

Notification

Note: This is a notification box.

Warning

Warning: This is a warning box.

Error

Error: This is an error box.