1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-04 18:07:51 +01:00
gojekyll/commands/testdata/site/markdown.md

21 lines
184 B
Markdown
Raw Normal View History

2017-07-26 16:01:26 +02:00
---
---
# {{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)
```