Introduction: Learn Markdown Syntax

Markdown, a simple language which has formatting such as bold,italic and quotes

Supplies

A text editor

Some work about Markdown

Step 1: Open a Text Editor

Open a text editor like StackEdit(https://stackedit.io/app) or Dillinger (https://dillinger.io).

Step 2: Learn Some Syntax

Markdown has simpler syntax than HTML which means you can learn more easy!!

Please read Step 3, Step 4, Step 5, Step 6, Step 7, Step 8 and Step 9

Step 3: Format Text

You can format text in Markdown:

Bold: **Example for bold!**

Italic: _Example for italic!_

Bold&Italic: ***Meow!!***

Strikethrough: ~~50~~ 40$

Strikethrough+Bold: This is ~~**gold**~~ sliver

Strikethrough+Italic: ~~_Meow!!_~~ Ham!!

Strikethrough+Bold&Italic: This is so ~~***cute***~~ and funny

Sub&Superscript: 4^2^ HCO~2~

Step 4: Add Headings

Markdown support headings which means, you can add "larger text" that you should!

To add a heading: type 1-6 hashtags before your text!


Heading Level 1: # Heading1

Heading Level 2: ## Heading2

Heading Level 3: ### Heading3

Heading Level 4: #### Heading4

Heading Level 5: ##### Heading5

Heading Level 6: ###### Heading6

Heading Level 1:

Heading1

=========


Heading Level 2:

Heading2

--------------

Step 5: Add Lists

Markdown has Lists,Unorded Lists and Checklists which means you can take a list with you!


Lists:

  1. Frist item
  2. Second item
  3. Third item
  4. Fourth item
  5. Fifth item

Unorded lists:

  • + Apples
  • - Butter
  • * Oil

Checklists:

 - [x] Coca Cola 

- [ ] Butter

 - [x] Oil

You can also indent lists!

For example:

  • - Part 1: Simple languages!
  • - Chapter 1: Markdown

- 1.1: Syntax

- 1.2: Formatting

- Chapter 2: Python

- 2.1: Syntax

- 2.2: Printing

- 2.3: Math

- Chapter 3: Perl

- 3.1: Syntax

- 3.2: Printing

- 3.3: Math

Step 6: Add Code

Markdown has the code syntax which means you can insert code to your file


For example:


# Perl

Perl is a great language

To print in Perl use this syntax: `print "Hello!\n";`


Or:

**Batch:**

```

echo.

echo Hello!

echo You are great!

echo.

```

Step 7: Add Images and Links

Markdown has syntax for a image. And a link?

For links,this is a example:

# Perl

Perl is a great language

To _download_ Stawberry Perl please use these links:

_For Windows:_

- 32 Bit: [32 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-32bit.msi)

- 64 Bit: [64 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi)

For images:

# Perl

Perl is a great language

Stawberry Perl: [64 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi)

_The_ stawberries: ![Stawberries](https://strawberryperl.com/images/320554_9491.jpg)

Step 8: Add Quotes

Markdown has syntax for quotes also called blockquotes

For example:

> Why about Perl?

Perl is a **great language**

> Has simple syntax?

Yes


You can also combine quotes with formatting and links&pictures:

For example:

> _About Perl_

Perl is a programming language

> This is **stawberries**

![Stawberries](https://strawberryperl.com/images/320554_9491.jpg)


> Why is the link?

> Helper: The link is [64 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi)


You can also indent quotes. For example:

# Quotes

> Quote from Helper:

>> Why is Perl?

> What??

_Perl is a_ programming **language**

>>> Move

>> Just _move!_

Ops!

>> Why is the link?

> Helper: The link is [64 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi)

**This is a** ~~quote~~ _blockquote!_

>>> ![Stawberries](https://strawberryperl.com/images/320554_9491.jpg)

Step 9: Advanced Markdown

You can use Advanced Markdown such as tables and comments


Comments are "HTML-like"

For example:

# Comments

To put a comment use this syntax:

<!-- Comment -->


Markdown has Tables, and you can mix a table with quotes&pictures&links&tables&formatting:

Example of simple table:

Simple table

# Table

This is a table

 |Subject |Python | Perl | Bash |

 |--------- | ------ | --------- | ------ |

 |_Printing_ |`print("Hello!")` |`print "Hello!\n"` |`echo "Hello!"` |

Example of formated table:

## Formated Table

This is my _table_:

> | Cat | Dog |

> |--|--|

> | ~~Meow!~~ | _Ham Ham!_ |

I putted ~~_some formatting_~~

Funny? XD

## Table with Links

My table is here!

| Perl | Python(ZIP) |

|--|--|

| [64 Bit](https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.msi) | [3.8.0](https://www.python.org/ftp/python/3.8.0/python-3.8.0-embed-amd64.zip) |

## Table with Pictures

Pic table _here!_

> | Stawberry Perl | Python |

> |--|--|

> |![Stawberries](https://strawberryperl.com/images/320554_9491.jpg) | ![Python](https://www.python.org/static/img/python-logo.png)


Lines & Line breaks:

This is a cute

# Heading

Line 1

-----------------

Line 2

Step 10: You Can Learn More

You can learn more Markdown if you want!!

End of this project