Skip to content

Commit

Permalink
Merge pull request t413#2 from daattali/master
Browse files Browse the repository at this point in the history
updates
  • Loading branch information
epwalsh authored Jul 30, 2016
2 parents da54dfd + 4a374ee commit a68a849
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
22 changes: 12 additions & 10 deletions _posts/2015-02-20-test-markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -40,11 +42,11 @@ var foo = function(x) {
foo(3)
```

And here is some more with line numbers

{% highlight python linenos %}
def bar(x):
return x * 2
And here is the same code yet again but with line numbers:

print bar(2)
{% highlight javascript linenos %}
var foo = function(x) {
return(x + 5);
}
foo(3)
{% endhighlight %}

0 comments on commit a68a849

Please sign in to comment.