여니의 프로그래밍 study/Github

[Github] README.md 파일 문법 정리하기

여니's 2021. 3. 9. 11:25
<!--Heading-->
# Heading1
## Heading2
### Heading3
#### Heading4
##### Heading5 
###### Heading6
Paragraph

<!-- line -->
___

<!-- Text attributes -->
**bold**
*italic*
~~strikethrought~~

<!-- Quote 인용구-->
> Don't forget to code your dream.

<!-- Bullet list 목록 -->
* 🍒
* 🍎
* 🍅
* 🍊
* 🍋
* 🥝

Other fruits : 
- 🍓

<!-- Numbered list -->
Numbers:
1. first
2. second
3. third

<!-- link -->
Click [here](https://www.tistory.com/)

<!-- image -->
![image desciption](url주소)

![image description](https://user-images.githubusercontent.com/61736137/102153953-b2881000-3ebb-11eb-9581-7026bc8e169e.jpg)

<!-- Table -->
|Header|Description|
|:--:|:--:|
|Cell1|Cell2|
|Cell1|Cell2|
|Cell1|Cell2|
|Cell1|Cell2|
<!-- 오른쪽 정렬 --: , 왼쪽 정렬 :--, 가운데 정렬 :--: -->

<!-- code -->
`alert('Hello')`

```js
conlsole.log('your message')
```

<!-- `하면 코드 가독성 높아진다. 
```하면 코드 블럭 완성 
```뒤에 ts, js 등 언어 써주면 더 좋음! -->


출처

www.youtube.com/watch?v=kMEb_BzyUqk