Skip to content

Instantly share code, notes, and snippets.

@tnaia
Last active December 19, 2015 00:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tnaia/5872085 to your computer and use it in GitHub Desktop.
One test of Markdwn
# About
Markdown is a project of John Gruber. In [his][1] page you will
find more about it.
With markdown you can _highlight_, in **many** different ways.
- lists
- are
- also
- possible
1. you can
2. can
3. have numbered ones too
And, very importantly, you can have `inline` and blocks of code
# code has to have at least four spaces before it.
def my_fun(n):
return n -1
# Github flavoured markdown
Has extensions to what you can use. They have a [reference page][2].
The previous code can now be written
```python
# code has to have at least four spaces before it.
def my_fun(n):
return n -1
```
# Lists of tasks
- [x] this task has been completed
- [ ] this hasnt
# References
[1]: http://daringfireball.net/projects/markdown/
[2]: https://help.github.com/articles/github-flavored-markdown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment