Skip to content

dev-ggomes/Markdown-Complete-Guide4-README.md

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

18 Commits
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ Welcome! Markdown Complete Guide 4 README.md

:octocat: Start improving your README's with this guide.

⭐If you liked this repository, please give it a star

Sponsor Β  GitHub Repo stars


How this repository will be shown?

  1. How to do it (with Markdown)
  2. Preview

Menu (not remissive yet)

🧱 1. Fundamentals

1.1 Titles (#)πŸ”

# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6

Title 1

Title 2

Title 3

Title 4

Title 5
Title 6

1.2 ✍️ EmphasisπŸ”

*italic* ou _italic_  
**bold** ou __bold__  
***bold + italic***  
~~erased~~

italic ou italic
bold ou bold
bold + italic
erased

1.3 πŸ—’οΈ ListsπŸ”

Unordered

- Item
* Item
+ Item
  • Item
  • Item
  • Item

Ordered

1. Item
2. Item 2
   1. Subitem
  1. Item
  2. Item 2
    1. Subitem

Checkboxes

- [x] Done
- [ ] To do
  • Done
  • To do

Note

The x must be put only in the tasks you've already done

1.4 πŸ”— LinksπŸ”

[Google](https://google.com)

Google

1.5 πŸ–ΌοΈ ImagesπŸ”

![Alt text](https://via.placeholder.com/100)

Alt text

1.6 πŸ’» CodeπŸ”

Inline

Note

Inside `

Use `npm install`

How it will be shown:
Use npm install

Code block

Note

Inside ```

```
block of code here
```

How it will be shown:

block of code here

With language (Python for example)

```Python
def hello():
    print("Hello World!")
```

How it will be shown:

def hello():
    print("Hello World!")

Before and after (changes made)

```diff
  - def hello():
  + def hi():
      print("Hello World!")
```

How it will be shown:

- def hello()
+ def hi():
  print("Hello World!")

πŸ“ 2. Structure and Layout

2.1 πŸ“Š TablesπŸ”

| Name  | Age | Role     |
|-------|------:|-----------|
| Name 1  | 24    | Backend developer |
| Name 2 | 32    | Fullstack developer   |
Name Age Role
Name 1 24 Backend developer
Name 2 32 Fullstack developer

Important

:---: -> aligned to the center
---: -> aligned to the right
:--- -> left aligned

2.2 βž– Horizontal lineπŸ”

Note

All 3 do the same thing

___
---
***



2.3 πŸ’¬ QuotesπŸ”

> This is a quote.
>> Subquote

This is a quote.

Subquote

2.4 πŸ’¬ Different types of QuotesπŸ”

> [!IMPORTANT]\
> This is a important quote

> [!WARNING]\
> This is a quote that warns the person

> [!NOTE]\
> This is just a quote that expresses a note

Important

This is a important quote

Warning

This is a quote that warns the person

Note

This is just a quote that expresses a note

πŸ” 3. Advanced

3.1 ❗ Character EscapingπŸ”

\*not italic\*

*not italic*

3.2 πŸ“ Collapsible (GitHub only)πŸ”

<details>
  <summary>Show</summary>
  Hidden text
</details>
Show Hidden text

3.3 πŸ˜„ EmojisπŸ”

:sparkles: :tada: :rocket:

✨ πŸŽ‰ πŸš€

Note

You can check all the emojis available at the present moment here: Emoji-Cheat-Sheet repository by ikatyang

3.4 🧭 TOC (Table of Contents)πŸ”

- [Fundaments](#1-fundaments)
- [Structure](#2-structure-and-layout)

3.5 πŸ•΅οΈ Comments (not visible)πŸ”

<!-- this is a comment -->

3.6 βž— Math formulasπŸ”

$E = mc^2$

$E = mc^2$

$$
\frac{a}{b} = c
$$

$$ \frac{a}{b} = c $$

🧩 4. Renderers and Compatibility

Plataform Tables Emojis Math Mermaid HTML
Github βœ… βœ… ❌ βœ… βœ…
Obsidian βœ… βœ… βœ… βœ… ⚠️
Typora βœ… βœ… βœ… βœ… βœ…
VS Code βœ… βœ… βœ… ⚠️ βœ…

❌ 5. Bad habits to avoid

  • ❌ Titles with **bold**
  • ❌ Mix ordered with unordered lists
  • ❌ Using advanced HTML inside a Markdown document
  • ❌ Links without proper text

✏ How to contributeπŸ”

If you want to contribute to this repository you can fork it and make a pull request or open an issue!

Warning

Forks, pull requests, and issues are intended solely to enhance this repository for the benefit of the community. Any inappropriate or disrespectful activity will be reported accordingly.

About

:octocat: A complete Markdown guide for your README's. Developed to help users improve their README's.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published