Skip to content

Style Examples

Examples of markdown styles.

  • more information can be found here.

Section 1: Naming sections

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: Second Section

This is the second section in the first chapter

Subsection example

This is it.

Citing & Linking

This is an example citation [1].

This is a link.

MermaidJS Diagrams

Warning Sometimes these seem not to render properly at the moment. Hopefully someone can fix this soon.

Simple Cycle

graph LR hello --> world world --> again again --> hello

Split Tree

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