Markdow이란?
마크다운은 일반 텍스트 문서의 양식을 편집하는 문법이다.
README파일이나 온라인 문서, 혹은 일반 텍스 트편집기로 문서 양식을 편집할 때 쓰인다.
마크다운을 이용해 작성된 문서는 쉽게 HTML등 다른 문서 형태로 변환이 가능하다.
VSCODE의 Markdown Preview를 통해 공부해보았다.
(유튜브채널 엘리의 드림코딩 '마크다운 6분 순삭 정리' 영상 참조)
<!-- Heading -->
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Paragraph
<!-- Line --> 언더스코어3개면 밑줄완성!!
___
<!-- Text attributes -->
checkin **hamberger** sweetpotato *potato* kimchi ~remon~
결과
<!-- Bullet list -->
List:
* apple
* cherry
List:
- blueberry
- strawberry
List:
1. pear
2. orange
<!-- Link -->
Click [here](http://naver.com)
<!-- Image -->
![image description](https://s3-ap-northeast-2.amazonaws.com/opentutorials-user-file/module/3135/7573.png)
결과
<!-- Table -->
|Header|Description|
|--:|--:|
|Cell1|Cell2|
|Cell3|Cell4|
|Header|Description|
|:--:|:--:|
|Cell1|Cell2|
|Cell3|Cell4|
|Header|Description|
|:--|:--|
|Cell1|Cell2|
|Cell3|Cell4|
<!-- Code -->
My Code
`console.log('Hello')`
```
console.log('Hello')
```
```js
console.log('Hello')`
```
결과
추가 공부시 참고 사이트
HTTP란? (0) | 2021.11.12 |
---|---|
Markup Language (0) | 2021.11.10 |
프로그래밍 언어란? (0) | 2021.11.05 |
IDE란? (0) | 2021.11.05 |
[책] 비전공자를 위한 이해할 수 있는 IT 지식 (0) | 2021.11.05 |
댓글 영역