Markdown Guide
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:
- Item 1
- Text.
- Item 2
- Text.
- Item 3
- Test.
List | Text |
---|---|
… | … |
Item 1 | Text. |
Item 2 | Text. |
Item 3 | Test. |
… | … |
-
This is for a source/addendum e.g. references or additional information. ↩