๐ MarkDown ๊ธฐ๋ณธ ์ฌ์ฉ๋ฒ
๐ Header Size
#
๊ธ์จ๋ฅผ ํฌ๊ฒ
##
๊ธ์จ๋ฅผ ์ฝ๊ฐ ํฌ๊ฒ
###
๊ธ์จ๋ฅผ ์ฝ๊ฐ ์ฝ๊ฐ ํฌ๊ฒ
####
๊ธ์จ๋ฅผ ์ฝ๊ฐ ์ฝ๊ฐ ์ฝ๊ฐ ํฌ๊ฒ
๐ Unordered list
- Chapter
- Section
- Paragraph
- Section
โ UnderLine
<U></U>
: mymelody
โ Check Box
- [ ]
: ๊ณต๋ฐฑ์ ์ด 3๊ฐ ๋ฃ์ด์ค์ผ ํ๋ค.
- ์ค๋ ํ ์ผ
- ์ด๋ ๊ฐ๊ธฐ
- ๊ณต๋ถ ํ๊ธฐ
- ์ํ ์์ฒญ
๐ฌ Description list
- Sun
- the star around which the earth orbits
- Moon
- the natural satellite of the earth, visible by reflected light from the sun
๐จ Prompts
An example showing the
tip
type prompt.
An example showing the
info
type prompt.
An example showing the
warning
type prompt.
An example showing the
danger
type prompt.
๐ฆ Code Box
``: ํ ์ค ์์ฑ ์ ํ ๋ฒ๋ง ์ฌ์ฉSystem.out.println("Hello World");
````: ์ฌ๋ฌ ์ค ์์ฑ ์ ์ด 3๊ฐ ์ฌ์ฉ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Solution {
public String solution(String s) {
String[] numbers = s.split(" ");
int min = Integer.MAX_VALUE;
int max = Integer.MIN_VALUE;
for (String numStr : numbers) {
int num = Integer.parseInt(numStr);
min = Math.min(min, num);
max = Math.max(max, num);
}
return min + " " + max;
}
}
๐คท Block Quote
>
์ผ๋ก ์์ํ๋ ํ
์คํธ
์ธ์ฉ๋ฌธ
์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ
์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ
์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ
์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ์ ์ธ์ฉ๋ฌธ
๐น External Link
<url>
: ์ธ๋ถ url ๋งํฌ๋ก ์ด๋ https://www.youtube.com
[name](url)
: ์ธ๋ถ url ๋งํฌ๋ก ์ด๋ (์ด๋ฆ ์ง์ ๊ฐ๋ฅ) Google
๐ซ Table
1
2
3
| Header 1 | Header 2 | Header 3 | Header 4 |
| :------: | :------: | :------: | :------: |
| item 1 | item 2 | item 3 | item 4 |
Header 1 | Header 2 | Header 3 | Header 4 |
---|---|---|---|
item 1 | item 2 | item 3 | item 4 |
Header 1 | Header 2 | Header 3 | Header 4 |
---|---|---|---|
item 1 | item 2 | item 3 | item 4 |
๐ท image
default
1

Left align
1
{: width="000" height="000" .normal}
float to left/right
1
2
{: width="000" height="000" .w-50 .normal}
{: width="000" height="000" .w-50 .right}
Shadow (dark/light mode)
1
2
{: .light .w-00 .shadow .rounded-10 width="000" height="000"}
{: .dark .w-00 .shadow .rounded-10 width="000" height="000"}
๐น Video
This post is licensed under CC BY 4.0 by the author.