This post contains a cheatsheet with a few capabilities of markdown.

Topic

This is a section for a new topic.

Sub Topic

This is a section for a new sub topic with a source or addendum1.

Code Snippets

Here is a simple example of a code snippet with and without c highlights:

#include <stdio.h>

// main function
int main()
{
    // prints hello world
    printf("Hello World");
  
    return 0;
}

Which when executed prints the following:

$ ./helloworld.o
$ Hello World

Tables

Here is a simple example of a table covering the following list:

  1. Item 1
    • Text.
  2. Item 2
    • Text.
  3. Item 3
    • Test.
List Text
Item 1 Text.
Item 2 Text.
Item 3 Test.
  1. This is for a source/addendum e.g. references or additional information.