2015-03-02 12:06:05 -08:00
|
|
|
---
|
|
|
|
layout: post
|
|
|
|
title: Test markdown
|
|
|
|
subtitle: Each post also has a subtitle
|
|
|
|
---
|
|
|
|
|
|
|
|
You can write regular [markdown](http://en.wikipedia.org/wiki/Markdown) here and Jekyll will automatically convert it to a nice webpage.
|
|
|
|
|
|
|
|
**Here is some bold text**
|
|
|
|
|
|
|
|
## Here is a secondary heading
|
|
|
|
|
2015-12-29 19:10:56 -02:00
|
|
|
How about a yummy crepe?
|
|
|
|
|
|
|
|
![Crepe](http://lafenicegelato.com/wp-content/uploads/2014/09/crepes-with-chocolate.jpg)
|
|
|
|
|
2015-11-08 15:19:04 -08:00
|
|
|
Here's a code chunk:
|
2015-11-06 12:45:41 -08:00
|
|
|
|
|
|
|
~~~
|
|
|
|
x <- 5 + 10
|
|
|
|
print(x)
|
|
|
|
~~~
|
|
|
|
|
2015-11-08 15:19:04 -08:00
|
|
|
And here is some code with syntax highlighting
|
2015-11-06 12:45:41 -08:00
|
|
|
|
2016-02-01 17:33:46 -08:00
|
|
|
```javascript
|
2015-11-08 15:19:04 -08:00
|
|
|
var foo = function(x) {
|
|
|
|
return(x + 5);
|
|
|
|
}
|
|
|
|
foo(3)
|
2016-02-01 17:33:46 -08:00
|
|
|
```
|