첫 포스팅 작성해보기
Markdown
Markdown이란?
일반 텍스트 기반의 경량 마크업 언어다. 일반 텍스트로 서식이 있는 문서를 작성하는 데 사용되며, 일반 마크업 언어에 비해 문법이 쉽고 간단한 것이 특징이다. HTML과 리치 텍스트(RTF) 등 서식 문서로 쉽게 변환되기 때문에 응용 소프트웨어와 함께 배포되는 README 파일이나 온라인 게시물 등에 많이 사용된다. <출처 - 위키백과>
마크다운 문법 (syntax)
1
2
3
4
5
6
7
8
9
10
11
| # 제목 1
## 제목 2
### 제목 3
#### 제목 4
##### 제목 5
###### 제목 6
|
H1 - heading
H2 - heading
H3 - heading
H4 - heading
줄바꿈 Line Breaks
인용구 BlockQuote
> 블럭인용문자를 사용한다.
1
2
3
4
5
| > This is a First blockquote
>
> > This is a Second blockquote
> >
> > > This is a Third blockquote
|
This is a First blockquote
This is a Second blockquote
This is a Third blockquote
목록 List
1
2
3
| 1. Firstly
2. Secondly
3. Thirdly
|
- Firstly
- Secondly
- Thirdly
1
2
3
| - Chapter
- Section
- Paragraph
|
1
2
3
4
| - [ ] Job
- [x] Step 1
- [x] Step 2
- [ ] Step 3
|
설명문 description
- chirpy
- 쾌활한
프롬프트 창 Prompts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| {: .prompt-tip }
> An example showing the `tip` type prompt.
{: .prompt-info }
> An example showing the `info` type prompt.
{: .prompt-warning }
> An example showing the `warning` type prompt.
{: .prompt-danger }
> An example showing the `danger` type prompt.
|
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.
테이블 Tables
1
2
3
4
5
| | Company | Contact | Country |
| :--------------------------- | :--------------- | ------: |
| Alfreds Futterkiste | Maria Anders | Germany |
| Island Trading | Helen Bennett | UK |
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |
|
Company | Contact | Country |
---|
Alfreds Futterkiste | Maria Anders | Germany |
Island Trading | Helen Bennett | UK |
Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |
링크 Links
1
| <http://127.0.0.1:4000>
|
http://127.0.0.1:4000
1
| Click the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2].
|
Click the hook will locate the footnote, and here is another footnote.
이미지 Images
1
| {: width="972" height="589" }
|
Full screen width and center alignment
1
| {: .shadow width="1548" height="864" }
|
shadow effect (visible in light mode)
1
| {: .normal}
|
1
| {: width="972" height="589" .w-50 .left}
|
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum. Phasellus a tortor aliquam, tristique felis sit amet, elementum enim. Integer vestibulum vitae nulla nec pretium.
1
| {: width="972" height="589" .w-50 .right}
|
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum. Phasellus a tortor aliquam, tristique felis sit amet, elementum enim. Integer vestibulum vitae nulla nec pretium.
강조 Emphasis
1
2
3
4
| _기울어진 글씨_
**굵은 글씨**
**_굵은 기울어진 글씨_**
~~취소선 글씨~~
|
기울어진 글씨
굵은 글씨
굵은 기울어진 글씨
취소선 글씨
인라인 코드 Inline code
This is an example of Inline Code
.
파일경로 Filepath
1
| Here is the `/path/to/the/file.extend`{: .filepath}.
|
Here is the /path/to/the/file.extend
.
코드 블록 Code block
1
| This is a common code snippet, without syntax highlight and line number.
|
1
2
3
| $ env |grep SHELL
SHELL=/usr/local/bin/bash
PYENV_SHELL=bash
|
1
2
3
4
| if [ $? -ne 0 ]; then
echo "The command was not successful.";
#do the needful / exit
fi;
|
1
2
3
| @import
"colors/light-typography",
"colors/dark-typography"
|