개발 관련 강의 정리/유튜브
[드림코딩] 마크다운(Markdown) 6분 순삭 정리 + 깃허브 리드미(ReadMe) 파일 작성 팁 정리
코딩개발
2023. 7. 7. 12:31
728x90
반응형
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
paragraph
<!-- Line -->
---
<!-- Text attributes -->
**bold**
*italic*
~~strikethrough~~
<!-- Quote -->
> Don't forget to code your dream.
<!-- Bullet list -->
* 메모
* 입니다.
- 메모
- 입니다.
<!-- Numbered list -->
Numbers:
1. first
2. second
3. third
<!-- Link -->
<!-- Image -->

<!-- Table -->
|Header|Description|
|--:|:--:|
|Cell1|Cell2|
|Cell1|Cell2|
|Cell1|Cell2|
|:--| : 왼쪽 정렬
|--:| : 오른쪽 정렬
|:--:| : 가운데 정렬
<!-- Cdoe -->
코드 설명 설명 `console.log('your message')` 설명 설명
```ts
console.log('your message')
```
```뒤에 언어를 적어주면 적용됨
|
참고
https://www.youtube.com/watch?v=kMEb_BzyUqk&ab_channel=%EB%93%9C%EB%A6%BC%EC%BD%94%EB%94%A9
728x90
반응형