1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 12:44:54 +01:00
gojekyll/testdata/example/markdown.md
2017-07-01 23:06:47 -04:00

184 B

{{page.title}}

A list:

  • first
  • second
  • third

Fenced code:

def fib(n):
    if n < 2:
        return n
    else:
        return fib(n - 2) + fib(n - 1)