Skip to content

Commit 5069508

Browse files
committed
add markdown guide post
1 parent 4e04511 commit 5069508

1 file changed

Lines changed: 188 additions & 0 deletions

File tree

Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
---
2+
title: How to Use Markdown
3+
author: Slavetomints
4+
date: 2026-01-08
5+
categories: [Guides]
6+
tags: [guide, markdown]
7+
description: How to get started with Markdown
8+
---
9+
10+
## Headings
11+
12+
There are 6 levels of headers, in order to make one, you add a `#` in front of the word, like this:
13+
14+
```md
15+
## example
16+
```
17+
18+
And it looks like this:
19+
20+
## example
21+
22+
The more `#`'s you add, the higher the level is. Only one `#` is equivalent to a `<h1>` in HTML. 4 `#`'s is equivalent to a `<h4>`.
23+
24+
```md
25+
# Header 1
26+
## Header 2
27+
### Header 3
28+
#### Header 4
29+
##### Header 5
30+
###### Header 6
31+
```
32+
33+
# Header 1
34+
## Header 2
35+
### Header 3
36+
#### Header 4
37+
##### Header 5
38+
###### Header 6
39+
40+
## Paragraphs
41+
42+
43+
To have regular text, just start typing! you don't need anything special.
44+
45+
```md
46+
To have regular text, just start typing! you don't need anything special.
47+
```
48+
49+
## Italics / Bold / Underline / Etc
50+
51+
### Italics
52+
53+
*Put the text you want to be italicized between two asterisks*
54+
55+
```md
56+
*Put the text you want to be italicized between two asterisks*
57+
```
58+
59+
### Bold
60+
61+
**Put the text you want to be bolded between asterisks, with two on each side**
62+
63+
```md
64+
**Put the text you want to be bolded between asterisks, with two on each side**
65+
```
66+
67+
### Strikethrough
68+
69+
~~Put the text you want to be struck through between tildes, with two on each side~~
70+
71+
```md
72+
~~Put the text you want to be struck through between tildes, with two on each side~~
73+
```
74+
75+
## Blockquotes
76+
77+
> To type a block quote, just put a `>` in front of what you are typing similar to how you type a header.
78+
> > You can have multiple layers of block quotes by stacking `>`'s
79+
80+
```
81+
> To type a block quote, just put a `>` in front of what you are typing similar to how you type a header.
82+
> > You can have multiple layers of block quotes by stacking `>`'s
83+
```
84+
85+
## Lists
86+
87+
### Ordered Lists
88+
89+
For an ordered list, just put numbers in front of the list items as such:
90+
91+
1. One
92+
2. Two
93+
3. Three
94+
4. Four
95+
96+
```md
97+
1. One
98+
2. Two
99+
3. Three
100+
4. Four
101+
```
102+
103+
### Unordered Lists
104+
105+
An unordered list is the same idea as the ordered list, just replace the numbers with dashes (`-`).
106+
107+
- One
108+
- Two
109+
- Three
110+
- Four
111+
112+
```md
113+
- One
114+
- Two
115+
- Three
116+
- Four
117+
```
118+
119+
## Multi-Layer Lists
120+
121+
To add subitems to a list, simply indent the next entry
122+
123+
- One
124+
- Subitem
125+
- Two
126+
- Three
127+
- Four
128+
129+
```md
130+
- One
131+
- Subitem
132+
- Two
133+
- Three
134+
- Four
135+
```
136+
137+
## Code snippets
138+
139+
For `inline code`, simply surround the section you want with backticks.
140+
141+
```md
142+
For `inline code`, simply surround the section you want with backticks.
143+
```
144+
145+
For a code block, put three backticks on separate lines before and after the code.
146+
147+
```
148+
Hi! This is a code block!
149+
It looks pretty neat!
150+
```
151+
<br>
152+
```md
153+
``​`
154+
Hi! This is a code block!
155+
It looks pretty neat!
156+
``​`
157+
```
158+
159+
## Links
160+
161+
Links can be included as such:
162+
163+
```md
164+
[text that you see](hxxps://linkhere)
165+
```
166+
167+
[text that you see](https://nyx.slavetomints.com/posts/how-to-use-markdown#links)
168+
169+
170+
## Images
171+
172+
If you want to include an image, see the following syntax:
173+
174+
```md
175+
![Image alt text](/path/to/image.jpg)
176+
```
177+
178+
![Image alt text](/assets/img/white-logo.svg)
179+
180+
## Horizontal Rules
181+
182+
If you want to break up some content, all you have to do is put three dashes side by side on their own line as such:
183+
184+
```md
185+
---
186+
```
187+
188+
---

0 commit comments

Comments
 (0)