1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 10:44:39 +01:00
gojekyll/example/markdown.md
2017-08-10 12:27:51 -04:00

21 lines
184 B
Markdown

---
---
# {{page.title}}
A *list*:
- first
- second
- third
Fenced code:
```python
def fib(n):
if n < 2:
return n
else:
return fib(n - 2) + fib(n - 1)
```