mikedewar / d3py

a plottling library for python, based on D3
1.42k stars 202 forks source link

Adds python syntax highlighting to readme #80

Closed stsievert closed 7 years ago

stsievert commented 8 years ago

This PR adds syntax highlighting. Specifically, the markdown readme file it replaces

    # comment
    x = 1
    for i in range(x):
        x += 1

with

```python
# comment
x = 1
for i in range(x):
    x += 1