Skip to content

Style Samples

For full documentation visit mkdocs.org.

This is a paragraph of text1 that goes on and on and on. It includes a a couple of footnotes2. Text can be bold. Some things can be deleted in a strike out. Other things can be hi-lighted to draw attention to them if necesary. The usual bold, italic and underline etc. are available. You can also do subscripts H20 and superscripts ATA as well and we can show off keys too Ctrl+Alt+Del

Grid Cards

  • HTML for content
  • JavaScript for interactivity
  • CSS for styling
  • Internet Explorer ... huh?

Now a Look at Tabs

So this is what tabs are like.

  • Sed sagittis eleifend rutrum
  • Donec vitae suscipit est
  • Nulla tempor lobortis orci
  1. Sed sagittis eleifend rutrum
  2. Donec vitae suscipit est
  3. Nulla tempor lobortis orci

Commands

  • mkdocs new [dir-name] - Create a new project.
  • mkdocs serve - Start the live-reloading docs server.
  • mkdocs build - Build the documentation site.
  • mkdocs -h - Print help message and exit.

Sub-Commands would go here

This is for sub-commands as an H3 heading.

Project layout

mkdocs.yml    # The configuration file.
docs/
index.md  # The documentation homepage.
...       # Other markdown pages, images and other files.

These are Admonitions

This is an example

This is an example text

This is a note

A really good note

This is information

Good information

This is a quote

I just quoted

This is a warning

You have been warned

This is a tip

The 12:30 at NewMarket is a cert

This is Failure

Failure is inevitable

This is Danger

Danger Will Robinson!

This is success

Wow you have done well

Now moving on to buttons

Primary Button Secondary Button

This is now a table for interest:

You can sort it on columns too!

Method Description
This Something
That January
Those Life
Now February

Now it is time for a Bubble Sort

Bubble Sort
def bubble_sort(items):
    for i in range(len(items)):
        for j in range(len(items) - 1 - i):
            if items[j] > items[j + 1]:
                items[j], items[j + 1] = items[j + 1], items[j]

Flowchart Time

Let's have a flowchart:

graph LR
  A[Start] --> B{Error?};
  B -->|Yes| C[Hmm...];
  C --> D[Debug];
  D --> B;
  B ---->|No| E[Yay!];


  1. This is a footnote 

  2. This is another footnote