Markdown Examples



Introduction

This page shows examples of the markdown text that can be used in this documentation.

This heading is shown as a submenu on the navbar.

- Introduction: introduction
- - Sub Menu: sub-menu-example
- Examples: examples
- - Headings: headings
- - Tables: tables
- - Code: code

Examples

Headings

#h1 heading
##h2 heading
###h3 heading
####h4 heading
#####h5 heading

h1 heading

h2 heading

h3 heading

h4 heading

h5 heading

Tables

| First Header  | Second Header |
| ------------- | ------------- |
| Content Cell  | Content Cell  |
| Content Cell  | Content Cell  |
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

Code

~~~~~~ javascript
var example = i;
i++;
console.log(i);
~~~~~~~
var example = i;
i++;
console.log(i);