Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Basic about Markdown

Markdown logo

Static Badge Static Badge

Resume of Markdown

  • Headings
  • Line Divider
  • Text
  • Ordered List
  • Unordered List
  • Checkbox list
  • Quote box
  • Inline Codes
  • Block Codes
  • Table
  • Links
  • Images

Headings

# This is the main title of the document, use it only one time
## Its for the main section titles like "Installation", "How to Use"
### For example, if you have an "Installation" section, you might have a subheading for "Requirements" or "Step by Step"
#### used to subdivide the content in even more detail
##### More detailed yet

Line Divider

*** this is a line divider

--- this is a line divider too

TEXT

  • This is a enfasis prhase

    • *Enfasis*
  • This is a STRONG phrase

    • **STRONG**
  • this is a Italic phrase

    • _Italic_

My Ordered List


  1. Item 1
  2. Item 2
  3. item 3
Markdown Code:

1. Item 1
2. Item 2
3. item 3

My Unordered List

-With Circles

  • Item 1
  • Item 2
  • Item 3
Markdown Code:

* Item 1
* Item 2
* Item 3

-With CheckBox

  • Take a Shower
  • Breakfast
  • Go to University
Markdown Code:

- [x] Take a Shower
- [x] Breakfast
- [ ] Go to University

Quote Box

Aligned Quote box

Markdown Code:

>Quote Box
>> Aligned Quote box

Codes

Inline Codes

Git and GitHub are very important

Markdown Code:

    `Git` and `GitHub` are very important

Block Codes

int age = 30
age += 5
print(age)

``` block code content ```


Table

Name Age
Peter 18
Henry 20
Markdown Code:

|Name | Age |
| --- | ----|
|Peter|   18|
|Henry|   20|

Links and Images

  • Markdown Code: Go to My [GitHub](https://github.com/joao-vmoraes "GitHub")
  • Image of Helo World
  • Markdown Code: ![Image of Hello World](https://cdn-icons-png.flaticon.com/256/25/25231.png)

About

This repository aims to share basic commands of the markup language called "Markdown", widely used in GitHubs Readme file, if tit is useful to you, dont forget to follow me on GitHub and give a Star to the Repository

Topics

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors