Markdown Basics

*** Use "WP Githuber MD"(https://wordpress.org/plugins/wp-githuber-md/) plugin to edit markdown in WordPress

# Heading level 1

Heading level 1

<https://www.markdownguide.org/basic-syntax/>
https://www.markdownguide.org/basic-syntax/

I really like using Markdown.
I really like using Markdown.

I think I'll use it to format all of my documents from now on.
I think I'll use it to format all of my documents from now on.

Don't put tabs or spaces in front of your paragraphs.
Don't put tabs or spaces in front of your paragraphs.

###### Heading level 6

Heading level 6

Keep lines left-aligned like this.
Keep lines left-aligned like this.

This is the first line.
This is the first line.

And this is the second line.
And this is the second line.

I just love **bold text**.
I just love bold text.

Italicized text is the *cat's meow*.
Italicized text is the cat's meow.

Blockquotes with Multiple Paragraphs
Blockquotes with Multiple Paragraphs

> Dorothy followed her through many of the beautiful rooms in her castle.

Dorothy followed her through many of the beautiful rooms in her castle.

>

> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

> #### The quarterly results look great!

The quarterly results look great!

>

> - Revenue was off the chart.

  • Revenue was off the chart.

> - Profits were higher than ever.

  • Profits were higher than ever.

>

> *Everything* is going according to **plan**.

Everything is going according to plan.

1. First item

  1. First item

2. Second item

  1. Second item

3. Third item

  1. Third item

1. Indented item(type with preceeding spaces)

  1. Indented item

2. Indented item

  1. Indented item

4. Fourth item

  1. Fourth item

- First item

  • First item

- Second item

  • Second item

- Third item

  • Third item

- Indented item

  • Indented item

- Indented item

  • Indented item

- Fourth item

  • Fourth item

#### Starting Unordered List Items With Numbers

Starting Unordered List Items With Numbers

- 1968\. A great year!

  • 1968. A great year!

- I think 1969 was second best.

  • I think 1969 was second best.

#### Code Blocks

Code Blocks

1. Open the file.

  1. Open the file.

2. Find the following code block on line 21:

  1. Find the following code block on line 21:
    ```

        <html>
          <head>
            <title>Test</title>
          </head>

    ```

        <html>
          <head>
            <title>Test</title>
          </head>

3. Update the title to match the name of your website.

  1. Update the title to match the name of your website.

to highlight words in a a line , use backtick, eg:

`nano`

to highlight words in a a line , use backtick, eg: nano.

Image

![Alt text](file://Image.png "Text on mouseover")
![Alt text](https://www.outsource-online.net/images/pic03.jpg "Text on mouseover")

Alt text

Table

|Minute  |  Hour |  Day |   Month |     Weekday |   Command|
|---|
|0|0|1|0|0|testCommand|
Minute Hour Day Month Weekday Command
0 0 1 0 0 testCommand

Comments

If you want a comment that is strictly for yourself (readers of the converted document should not be able to see it, even with "view source") you could (ab)use

[//]: # (This may be the most platform independent comment)

For maximum portability it is important to insert a blank line before and after this type of comments, because some Markdown parsers do not work correctly when definitions brush up against regular text.For eg: One such comment is typed below, but you wont see it