[MarkDown] MarkDown이란?
👌 마크다운이란?
쉽고 빠르게 문서를 정리하는 언어, README.md
가 대표적인 마크다운 문법으로 작성된 파일의 예시
✔ 제목 (Header)
# 제목1
## 제목2
### 제목3
#### 제목4
##### 제목5
###### 제목6
✔ 강조 (Emphasis)
*이텔릭체* _이텔릭체_
**볼드** __볼드__
***이텔릭과 볼드*** ___이텔릭과 볼드___
~~취소선~~
<u>밑줄</u>
이텔릭체 이텔릭체
볼드 볼드
이텔릭과 볼드 이텔릭과 볼드
취소선
밑줄
✔ 목록 (List)
1. 순서
2. 순서
- 순서 X
* 순서 X
+ 순서 X
3. 순서
1. 순서
2. 순서
- 순서
- 순서
- 순서 X
- 순서 X
- 순서 X
- 순서
- 순서
- 순서
✔ 링크 (Links)
[google](https://google.com)
[google 설명](https://google.com "구글 설명")
[google 참조1][1]
[google 참조2][2]
<https://google.com>
[1]: https://google.com
[2]: https://google.com "구글로 이동합니다"
google
google 설명
google 참조1
google 참조2
https://google.com
✔ 이미지 (Images)
![대체 텍스트](https://woohyun-park.github.io/myPage/icon-instagram.png "인스타그램")
![인스타그램][1]
[1]:https://woohyun-park.github.io/myPage/icon-instagram.png "인스타그램"
✔ 이미지에 링크
[![인스타그램](https://woohyun-park.github.io/myPage/icon-instagram.png)](https://www.instagram.com/iamdooddi/)
✔ 코드 강조
`코드 강조`
코드 강조
✔ 블록 코드 강조
```html
<a href="https://www.instagram.com/iamdooddi/ target="_blank">Instagram
```
<a href="https://www.instagram.com/iamdooddi/ target="_blank">Instagram</a>
✔ 표 (Table)
|이름|성별|나이|
|:---|:---:|---:| <!--정렬-->
|박우현|남|23|
|이름|성별|나이|
|:---|:---:|---:|
|박우현|남|23|
✔ 인용문 (BlockQuote)
> *Our battered suitcases were piled on the sidewalk again; we had longer ways to go. But no matter, the road is life -Jack Kerouac*
break
> Quote
>>Nested Quote 1
>>>Nested Quote 2
Our battered suitcases were piled on the sidewalk again; we had longer ways to go. But no matter, the road is life -Jack Kerouac
break
Quote
Nested Quote 1
Nested Quote 2
✔ HTML 문법
원시 HTML 문법을 사용가능
<u>인스타그램</u>
<img width="50" src="https://woohyun-park.github.io/myPage/icon-instagram.png" title="인스타그램">
인스타그램
✔ 수평선
___
***
___
✔ 줄바꿈
`<br>`<br>사용
<br>
사용
👍 참고 사이트
Author And Source
이 문제에 관하여([MarkDown] MarkDown이란?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@woohyun_park/MarkDown저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)