Editing the Github Wiki

Let's edit the Wiki on Github. Click "Edit" in the upper right.

The method of editing and saving the contents of the Wiki is the same as that explained in Creating a new Wiki on Github.

How to write a Wiki-Basics of Markdown Notation

I use Markdown notation when writing a Wiki, but let's remember a few ways to write it.

Heading

The headings are below.

#Heading 1
## Heading 2
### Heading 3

Code

code.

`` ```
use strict;
use warnings;
`` ```

List

list.

* Item 1
* Item 2
* Item 3

Table

table.

| TH | TH |
| ---- | ---- |
| TD | TD |
| TD | TD |

link

Page link. If the page name does not exist in the Wiki, the link will turn red and link to the newly created page.

[[Page Name]]

If you want to give a title different from the page name.

[[Environment construction procedure manual | 20200618102400]]

External link.

[[Perl Club | https://perlclub.net/]]

Associated Information