diff --git a/README.md b/README.md index 373a499..21a2c94 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ Want your website featured here? [Contact me](http://deanattali.com/aboutme#cont | [chauff.github.io](http://chauff.github.io/) | Claudia Hauff | Professor at Delft University of Technology | | [kootenpv.github.io](http://kootenpv.github.io/) | Pascal van Kooten | Data analytics | | [sjackman.ca](http://sjackman.ca) | Shaun Jackman | PhD candidate in bioinformatics | +| [epwalsh.fyi](https://epwalsh.fyi) | Evan Pete Walsh | PhD candidate (Statistics and Mathematics) at Iowa State University | ### Very advanced: Local development diff --git a/_posts/2015-02-20-test-markdown.md b/_posts/2015-02-20-test-markdown.md index 7f0308e..5dd0202 100644 --- a/_posts/2015-02-20-test-markdown.md +++ b/_posts/2015-02-20-test-markdown.md @@ -22,16 +22,18 @@ Here's a useless table: How about a yummy crepe? -![Crepe](http://lafenicegelato.com/wp-content/uploads/2014/09/crepes-with-chocolate.jpg) +![Crepe](http://s3-media3.fl.yelpcdn.com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s.jpg) Here's a code chunk: ~~~ -x <- 5 + 10 -print(x) +var foo = function(x) { + return(x + 5); +} +foo(3) ~~~ -And here is some code with syntax highlighting +And here is the same code with syntax highlighting: ```javascript var foo = function(x) { @@ -40,11 +42,11 @@ var foo = function(x) { foo(3) ``` -And here is some more with line numbers +And here is the same code yet again but with line numbers: -{% highlight python linenos %} -def bar(x): - return x * 2 - -print bar(2) +{% highlight javascript linenos %} +var foo = function(x) { + return(x + 5); +} +foo(3) {% endhighlight %}