Skip to content

Chapter 1

This is the first chapter.

Section 1

This is the first section in the first chapter

Here is some Python source code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def build(config, live_server=False, dirty=False):
    """ Perform a full site build. """
    from time import time
    start = time()

    # Run `config` plugin events.
    config = config['plugins'].run_event('config', config)

    # Run `pre_build` plugin events.
    config['plugins'].run_event('pre_build', config=config)

Section 2

This is the second section in the first chapter

Citing stuff

This is an example citation [1].

MermaidJS Diagrams

graph TD A[Client] --> B[Load Balancer] B --> C[Server01] B --> D[Server02]