File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ Want your website featured here? [Contact me](http://deanattali.com/aboutme#cont
183183| [ chauff.github.io] ( http://chauff.github.io/ ) | Claudia Hauff | Professor at Delft University of Technology |
184184| [ kootenpv.github.io] ( http://kootenpv.github.io/ ) | Pascal van Kooten | Data analytics |
185185| [ sjackman.ca] ( http://sjackman.ca ) | Shaun Jackman | PhD candidate in bioinformatics |
186+ | [ epwalsh.fyi] ( https://epwalsh.fyi ) | Evan Pete Walsh | PhD candidate (Statistics and Mathematics) at Iowa State University |
186187
187188### Very advanced: Local development
188189
Original file line number Diff line number Diff line change @@ -22,16 +22,18 @@ Here's a useless table:
2222
2323How about a yummy crepe?
2424
25- ![ Crepe] ( http://lafenicegelato. com/wp-content/uploads/2014/09/crepes-with-chocolate .jpg )
25+ ![ Crepe] ( http://s3-media3.fl.yelpcdn. com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s .jpg )
2626
2727Here's a code chunk:
2828
2929~~~
30- x <- 5 + 10
31- print(x)
30+ var foo = function(x) {
31+ return(x + 5);
32+ }
33+ foo(3)
3234~~~
3335
34- And here is some code with syntax highlighting
36+ And here is the same code with syntax highlighting:
3537
3638``` javascript
3739var foo = function (x ) {
@@ -40,11 +42,11 @@ var foo = function(x) {
4042foo (3 )
4143```
4244
43- And here is some more with line numbers
44-
45- {% highlight python linenos %}
46- def bar(x):
47- return x * 2
45+ And here is the same code yet again but with line numbers:
4846
49- print bar(2)
47+ {% highlight javascript linenos %}
48+ var foo = function(x) {
49+ return(x + 5);
50+ }
51+ foo(3)
5052{% endhighlight %}
You can’t perform that action at this time.
0 commit comments