Skip to content

Commit a68a849

Browse files
authored
Merge pull request Bitcoin-ABC#2 from daattali/master
updates
2 parents da54dfd + 4a374ee commit a68a849

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

_posts/2015-02-20-test-markdown.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,18 @@ Here's a useless table:
2222

2323
How 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

2727
Here'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
3739
var foo = function(x) {
@@ -40,11 +42,11 @@ var foo = function(x) {
4042
foo(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 %}

0 commit comments

Comments
 (0)