간단하게 찾아보는 Velog Markdown

YCCHOI·2021년 8월 16일
0
post-thumbnail

1. Markdown?

마크다운은 일반 텍스트 기반의 경량 마크업 언어다.
일반 텍스트로 서식이 있는 문서를 작성하는 데 사용되며,
일반 마크업 언어에 비해 문법이 쉽고 간단한 것이 특징이다.
-위키백과


2. Title

# h1 부터
# h3도 있고
# h6까지

h1부터

h3도 있고

h6까지
* 목차를 위해 특별히 인용문에

3. Code Blocks

```python
print("hello world")```
print("hello world")

4. List

-, +, * bullet
  • bullet
1. number
  1. number

5. Blockquote

>인용문 작성

인용문 작성


6. Emphasis

*italic*
**bold**

italic
bold


7. Line

***
---




* inline link
[2nchanter](https://velog.io/@2nchanter)

* url link
<https://velog.io/@2nchanter>

* keyword ref.
[2nc]:https://velog.io/@2nchanter
[2nc] <- 키워드 입력시 링크 등장.

2nchanter

https://velog.io/@2nchanter

2nc


9. Image

* Image + link
[![Frostpunk](https://www.mobygames.com/images/promo/original/1549150290-4091353154.jpg)](https://store.steampowered.com/app/323190/Frostpunk/)


10. Backslash Escapes

* 마크다운 문법에 있는 기호를 그대로 출력 (역슬래시)
\-

-


11. Table

* |(수직선 기호)로 열 구분
* :(콜른)으로 정렬
* --로 th(table head)와 tr(table row) 구분
|  |th1|th2 |  
|--|--:|:--:|
|H1|tr1|tr2 |
th1th2
H1tr1tr2

12. Check Box

* bullet 뒤에 적용
- [ ] not checked
- [x] checked
  • not checked
  • checked

13. Imoji

ctrl+cmd+Space Bar


📚 Reference

내가 보려고 정리한 Velog(벨로그) 사용법 튜토리얼
위키백과-마크다운
table 속성정리


0개의 댓글