Add one # per level at the start of the line
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Paragraphs are created by inserting a newline character A paragraph can be created by pressing Enter at the end of the previous paragraph.
paragraph1
(Blank line)
paragraph2
paragraph1
paragraph2
Add two spaces before break. This behavior can be modified in the options menu.
foo
bar(two spaces)
baz
foo bar baz
Add one > per level at the start of the line
> quote
> quote
>> nested quotes
quote quote
nested quotes
Wrap code with three back quotes or tildes.
print 'foo'
corresponding highlight.js Demo of common category
```javascript:mersenne-twister.js
function MersenneTwister(seed) {
if (arguments.length == 0) {
seed = new Date().getTime();
}
this._mt = new Array(624);
this.setSeed(seed);
}
```
function MersenneTwister(seed) {
if (arguments.length == 0) {
seed = new Date().getTime();
}
this._mt = new Array(624);
this.setSeed(seed);
}
Words wrapped by `back quotes` will be formatted as inline code.
This is `Inline Code`.
This is Inline Code.
Code blocks should be preceded by four spaces or one tab.
class Foo
def foo
print 'foo'
end
end
class Foo
def foo
print 'foo'
end
end
Write three underscores _, or asterisks*.
***
___
---
To italicize text, add one asterisk or underscores before and after a word or phrase.
This is *Italic* .
This is _Italic_ .
This is Italic . This is Italic .
To make text bold, add two asterisks or underscores before and after a word or phrase.
This is **bold**.
This is __bold__.
This is bold. This is bold.
To bold and italicize text, add three asterisks or underscores before and after a word or phrase.
This is ***Italic & Bold***.
This is ___Italic & Bold___.
This is Italic & Bold. This is Italic & Bold.
You can insert <img> tag using .


The size of the image can be set by using an HTML image tag
<img src="https://octodex.github.com/images/dojocat.jpg" width="200px">
You can create links using [Display text](URL).
[Google](https://www.google.co.jp/)
[/Sandbox]
</user/admin1>
[/Sandbox]
This is the most flexible linker. Both the page description and link address can be displayed on the page.
[[./Bootstrap4]]
Example of Bootstrap4 is [[here>./Bootstrap4]]
[[./Bootstrap4]]
Example of Bootstrap4 is[[here>./Bootstrap4]]
To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Items can be nested using indentation.
- List1
- List1_1
- List1_1_1
- List1_1_2
- List1_2
- List2
- List3
To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.
1. Number list 1
1. Number list 1-1
1. Number list 1-2
1. Number list 2
1. Number list 3
- [ ] Task 1
- [x] Task 1.1
- [ ] Task 1.2
- [x] Task2
| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
OR
Left align | Right align | Center align
:--|--:|:-:
This | This | This
column | column | column
will | will | will
be | be | be
left | right | center
aligned | aligned | aligned
| Left align | Right align | Center align |
|---|---|---|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
``` tsv
Content Cell Content Cell
Content Cell Content Cell
```
Content Cell Content Cell
Content Cell Content Cell
``` tsv-h
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
```
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
``` csv
Content Cell,Content Cell
Content Cell,Content Cell
```
Content Cell,Content Cell
Content Cell,Content Cell
``` csv-h
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
```
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
You can write a reference ^1 to a footnote. You can also add an inline footnote^[Inline_footnote].
Long footnotes can be written as ^longnote.
Subsequent paragraphs are indented and belong to the previous footnote.
:smiley: :smile: :laughing: :innocent: :drooling_face:
:family: :man-boy: :man-girl: :man-girl-girl: :woman-girl-girl:
:+1: :-1: :open_hands: :raised_hands: :point_right:
:apple: :green_apple: :strawberry: :cake: :hamburger:
:basketball: :football: :baseball: :volleyball: :8ball:
:hearts: :broken_heart: :heartbeat: :heartpulse: :heart_decoration:
:watch: :gear: :gem: :wrench: :email:


