본 문서는 Velog를 기준으로 한 마크다운 사용법이다.
마크다운언어는 2022년 기준 명확한 표준이 존재하지 않는다.
최종 수정일 : 2023.10.27
참조링크 : https://www.markdownguide.org/
# H1
## H2
### H3
#### H4
##### H5
H1
H2
H3
H4
H5
> Block1
>> Block2
>>> Block3
Block1
Block2
Block3
Carriage <br> Return
Carriage
Return
```c
#include <stdio.h>
int main(void){
printf("Hello, World!");
return 0;
```python
import numpy as np
#include <stdio.h> int main(void){ printf("Hello, World!"); return 0; }
import numpy as np
언어 | Bash | C | C# | C++ | CSS | Diff | HTML | HTTP | ini | JSON | JAVA | JS | Python | Ruby | SQL |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
태그 | bash | c | cs | cpp | css | diff | html | http | ini | json | java | javascript | python | ruby | sql |
#include <stdio.h>
int main(void){
printf("Hello, World!");
return 0;
}
#include <stdio.h> int main(void){ printf("Hello, World!"); return 0; }
***
---
___
[LinkName](http://google.com)
<http://google.com>

<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" width="10%" height="10%">
` git init `
git init
| table1 | table2 | table3 |
|:-|:-:|-:|
|content1 |content2|content3|
table1 table2 table3 content1 content2 content3
<span style="color: red">Red Text</span>
Red Text
- First
- Second
- Third
- Fourth
- First
- Second
- Third
- Fourth
$\begin{pmatrix}a{11}&a{12}\a{21}&a{22}\end{pmatrix}$
$ [LaTex문법] $
과 같이 달러기호 사이에 LaTeX 문법을 사용한다.
<center>안녕</center>
안녕
이 외에도 Italic, Bold, Strikethrough, HTML, TaskList, Emoji 등을 사용할 수 있다. 이 중에서 필요한 것은 추후에 추가하도록 한다(2022.11.23).