-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelper.txt
45 lines (29 loc) · 966 Bytes
/
helper.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
markdown syntax (ctr+shift+V -> preview of readme in vs code)
#,##,###,####,####,#####,###### (headings largest to smallest) - > auto table of content creation
** text ** -> bold text
* text * -> italic
<sub></sub> and <sup></sup>
> -> quoting text (faded color and box)
`text` -> quoting code
```cpp
code -> code block (c++)
```
links creation : [link text](link_url)
image : ![alt_text](img_url)
unordered lists: - * +
ordered list : 1.
nested list : using indentation
1. first
- firts inner
- inner inner
alerts
> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.