Start improving your README's with this guide.
βIf you liked this repository, please give it a star
- How to do it (with Markdown)
- Preview
1.1 Titles (#)π
# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 61.2 βοΈ Emphasisπ
*italic* ou _italic_
**bold** ou __bold__
***bold + italic***
~~erased~~italic ou italic
bold ou bold
bold + italic
erased
1.3 ποΈ Listsπ
- Item
* Item
+ Item- Item
- Item
- Item
1. Item
2. Item 2
1. Subitem- Item
- Item 2
- Subitem
- [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)1.5 πΌοΈ Imagesπ
1.6 π» Codeπ
Note
Inside `
Use `npm install`How it will be shown:
Use npm install
Note
Inside ```
``` block of code here ```
How it will be shown:
block of code here
```Python
def hello():
print("Hello World!")
```
How it will be shown:
def hello():
print("Hello World!")```diff
- def hello():
+ def hi():
print("Hello World!")
```
How it will be shown:
- def hello()
+ def hi():
print("Hello World!")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.
>> SubquoteThis 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 noteImportant
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.1 β Character Escapingπ
\*not italic\**not italic*
3.2 π Collapsible (GitHub only)π
<details>
<summary>Show</summary>
Hidden text
</details>Show
Hidden text3.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$
$$
\frac{a}{b} = c
$$
| Plataform | Tables | Emojis | Math | Mermaid | HTML |
|---|---|---|---|---|---|
| Github | β | β | β | β | β |
| Obsidian | β | β | β | β | |
| Typora | β | β | β | β | β |
| VS Code | β | β | β | β |
- β 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.