Skip to content

Latest commit

 

History

History
82 lines (63 loc) · 1.21 KB

example.md

File metadata and controls

82 lines (63 loc) · 1.21 KB
layout title order permalink nav
default
Markdown Examples
0
/example/
Introduction
introduction
Sub Menu
sub-menu-example
Examples
examples
Headings
headings
Tables
tables
Code
code

Introduction

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

Sub Menu Example

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);