1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-04 18:57:54 +01:00
gojekyll/example/markdown.md
2017-06-23 09:31:04 -04:00

20 lines
183 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)
```