Files
website/docs/examples.md
2019-05-20 14:32:39 +02:00

427 B

title: Examples

Theme Examples

This page is full of examples so you can see how this theme renders different aspects of the documentation.

Code highlighting

Here is a Python code block.

a,b = 0,1
def fib():
    global a,b
    while True:
        a,b = b, a+b
        yield a

This is an example of inline code: f = fib() and f.next().

You can also use inline code as a link: index.md