๋งํฌ๋ค์ด ์ฌ์ฉ๋ฒ
vscode ์์ ์ ๋ฅผ ์ค์น
Paragraphs and Text Decoration
์ดํค๋ฆญ์ฒด / ๋ณผ๋์ฒด / ์ทจ์์ ์ฌ์ฉํ๊ธฐ
*ํ
์คํธ*: ์ดํค๋ฆญ์ฒด
cat is *cute*.
**ํ
์คํธ**: ๋ณผ๋์ฒด
cat is real **cute**.
***ํ
์คํธ*** - ์ดํค๋ฆญ&๋ณผ๋์ฒด
cat is real ***cute***.
cat is cute.
cat is real cute.
cat is real cute.
_ํ
์คํธ_: ์ดํค๋ฆญ์ฒด
cat is _cute_.
__ํ
์คํธ__: ๋ณผ๋์ฒด
cat is real __cute__.
___ํ
์คํธ___: ์ดํค๋ฆญ&๋ณผ๋์ฒด
cat is real ___cute___.
cat is cute.
cat is real cute.
cat is real cute.
~~ํ
์คํธ~~: ์ทจ์์
cat is ~~cute~~.
cat is cute.
Headings in Markdown
"#"์ ์ด์ฉํด heading์ ๋ํ๋ผ ์ ์๋ค.
# heading 1
## heading 2
### heading 3
heading 1
heading 2
heading 3
=, -์ผ๋ก heading์ ๋ํ๋ผ ์ ์๋ค.
heading 1
========
heading 2
--------
heading 1
heading 2
"#"์ ์ด์ฉํ๋ ๊ฒ์ ์ถ์ฒํ๋ค.
Links in Markdown
๊ธฐ๋ณธ ๋งํฌ ์ถ๊ฐ๋ฒ
https://github.com/yami03
<https://github.com/yami03> ๋ก ํํ
ํ
์คํธ์ ๋งํฌ๋ฅผ ์ฝ์
ํ ๊ฒฝ์ฐ
[My GitHub Account](https://github.com/yami03 "sla")
[ํ
์คํธ](๋งํฌ "title")
๋งํฌ key value ๊ฐ์ฒ๋ผ ์ฌ์ฉํ๊ธฐ
[๋งํฌ๋ค์ด์ฌ์ฉ๋ฒ][1] key value ๊ฐ์ฒ๋ผ ๋งํฌ๋ฅผ ๋ฌ ์ ์๋ค.
[1]๊ฐ์ ์ํ๋ ํ
์คํธ๋ฅผ ๋ฃ์ ์ ์๋ค.
Markdown Images
๊ธฐ๋ณธ ์ด๋ฏธ์ง ์ถ๊ฐ๋ฒ


!ํ๋ ์ด๋ฏธ์ง๋ฅผ ๋ปํ๋ค.
์ด๋ฏธ์ง key value๊ฐ์ฒ๋ผ ์ฌ์ฉํ๊ธฐ
![yami03][profile]
๋งํฌ์ ๋์ผํ๊ฒ key value๋ก ์ธ ์ ์๋ค.
๋งํฌ๋ ๊ฐ์ด ๋ฌ ๊ฒฝ์ฐ
[](https://github.com/yami03)
[](์ด๋ฏธ์ง๋งํฌ)
์ด๋ฏธ์งํ๊ทธ ์ฌ์ฉ1
[<img src="images/36615680.jpg">](https://github.com/yami03)
[<img src="์ด๋ฏธ์ง๋งํฌ">](๋งํฌ)
์ด๋ฏธ์งํ๊ทธ ์ฌ์ฉ2
<img src= "images/36615680.jpg" >
<style>
img{}
</ style>
<figure>
<figcaption></figcaption>
</figure>
Lists โ Ordered, Unorderd, Bullets and Nesting
list - * ํน์ + ์ฌ์ฉํ๋ค
* text1
* text2
* text3
+ text1
+ text2
+ text3
์์๊ฐ ์๋ ๋ฆฌ์คํธ
1. text1
2. text2
3. text3
text3
์ซ์๋ 1์ ์ฐ๋๊ฑธ ์ถ์ฒํ๋ค. ์๋๋ฉด ํ๋๊ฐ ์ถ๊ฐ๋๋ค๊ณ ๋ค์ ์ซ์๋ฅผ ํน๋ณํ ์ ๊ฒฝ ์ธ ํ์๊ฐ ์๋ค.
๋ค์ฌ์ฐ๊ธฐ
1. text1
* ๋ค์ฌ์ฐ๊ธฐ ๊ฐ๋ฅ
+ css ์์ด ๊ฐ๋ฅ
2. text
Line Breaks, Horizontal Rules and BlockQuotes
Line breaks
cat is cute<br>
cat really is.
cat is cute
cat really is.
Horizontal Rules
Something
---
ํ
์คํธ์ ๋ถ์ฌ ์ฐ๋ฉด heading์ผ๋ก ์ธ์
Something
Block Quotes
Four stages of competence
>Unconscious incompetence
>
>Conscious incompetence
>
>Conscious competence
>
>Unconscious competence
Four stages of competence
Unconscious incompetence
Conscious incompetence
Conscious competence
Unconscious competence
Code Blocks
๋ค์ฌ์ฐ๊ธฐ๋ก ์ฝ๋๋ธ๋ก ๋ง๋ค๊ธฐ
Here is my code:
var x = 100;
const cat1 = 'yami';
์ฝ๋๋ฅผ ๋ค์ฌ์ฐ๊ธฐ ํ๋ฉด ์๋์ผ๋ก ์ฝ๋ ๋ธ๋ญ์ด ๋ฉ๋๋ค.
var x = 100;
const cat1 = 'yami';
์ธ์ด๋ฅผ ์ ์ํ๊ณ ์จ๋ณด์
var y = 50;
const cat2 = gurumy;
var y = 50;
const cat2 = gurumy;
์ธ๋ผ์ธ์์๋ ์ฌ์ฉํ๊ธฐ
Hey did you try `var x = 100;`?
Hey did you try var x = 100;
?
๋ ๋๋ผ์ธ / ๋ธ๋ฃจ๋ผ์ธ
```diff
var x = 100;
- var y = 200;
+ var y = 300;
```
var x = 100;
- var y = 200;
+ var y = 300;
Tables
|Cat's Name|Cat's Age|
|:---------|:--------|
|yami|8|
|gurumy|8|
์ด ๋ถ๋ถ์ text-align์ ๋ํ๋ธ๋ค.
left ์ ๋ ฌ
|:---------|
center ์ ๋ ฌ
|:---------:|
right ์ ๋ ฌ
|---------:|
Github Treats
* [ ] Get MilK
* [x] Crack Eggs
* [ ] Cook Bacon
Github write ์ฐฝ์๋ ์ธ ์ ์๋ค.