Post

๐Ÿ“Œ MarkDown ๊ธฐ๋ณธ ์‚ฌ์šฉ๋ฒ•

๐Ÿ˜Ž Header Size


#๊ธ€์”จ๋ฅผ ํฌ๊ฒŒ

## ๊ธ€์”จ๋ฅผ ์•ฝ๊ฐ„ ํฌ๊ฒŒ

### ๊ธ€์”จ๋ฅผ ์•ฝ๊ฐ„ ์•ฝ๊ฐ„ ํฌ๊ฒŒ

#### ๊ธ€์”จ๋ฅผ ์•ฝ๊ฐ„ ์•ฝ๊ฐ„ ์•ฝ๊ฐ„ ํฌ๊ฒŒ

๐Ÿ“Œ Unordered list


  • Chapter
    • Section
      • Paragraph

โœ 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


> ์œผ๋กœ ์‹œ์ž‘ํ•˜๋Š” ํ…์ŠคํŠธ

์ธ์šฉ๋ฌธ

์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ

์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ

์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ

์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ์˜ ์ธ์šฉ๋ฌธ


<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 1Header 2Header 3Header 4
item 1item 2item 3item 4
Header 1Header 2Header 3Header 4
item 1item 2item 3item 4

๐Ÿ“ท image


default

1
![Image_title](img_url)

Default Image

Left align

1
![Image_title](img_url){: width="000" height="000" .normal}

Left Align

float to left/right

1
2
![float to left](img_url){: width="000" height="000" .w-50 .normal}
![float to right](img_url){: width="000" height="000" .w-50 .right}

float to left float to right

Shadow (dark/light mode)

1
2
![light mode only](img_url){: .light .w-00 .shadow .rounded-10 width="000" height="000"}
![dark mode only](img_url){: .dark .w-00 .shadow .rounded-10 width="000" height="000"}

light mode only dark mode only

๐Ÿ“น Video

This post is licensed under CC BY 4.0 by the author.