Skip to content
On this page

마크다운 및 플러그인 테스트

Markdown

마크다운은 경량 마크업 랭귀지로 2004년 John Gruber가 제안했다.

문단

문단 제목

# 문단 1
## 문단 2
### 문단 3

1단, 2단은 다음 형식도 가능하다

문단 1
===
문단 2
---

수평선

---
___


라인 변경

문단 변경

<p> 태그와 같이 문단 변경 시 줄바꿈을 두 번 삽입

텍스트1
텍스트2

텍스트1

텍스트2

<br> 태그와 같이 줄바꿈 시 공백 두 번 후 줄바꿈

텍스트1
텍스트2

텍스트1
텍스트2

텍스트

텍스트 꾸미기

Markdown결과
**강조**강조
__강조__강조
*기울임*기울임
_기울임_기울임
_**강조기울임**_강조기울임
~~취소선~~취소선

인용

> 인용문입니다.
>> 내부인용문입니다.

인용문입니다.

내부인용문입니다.

리스트

번호 리스트

1. 아이템
2. 아이템
3. 아이템
  1. 아이템
  2. 아이템
  3. 아이템

번호 없는 리스트

* Item 1
* Item 2
* Item 3
* Item 4
1. 아이템
2. 아이템
* 아이템
  • Item 1
    • Item 2
      • Item 3
    • Item 4
      1. 아이템
      2. 아이템
        • 아이템

Header 1Header 2Header 3
cell 1cell 2cell 3
cell 4cell 5cell 6

코드

인라인 코드

`인라인코드` 입니다.

인라인코드 입니다.

코드블럭

코드블럭

이미지

![profile](../attachment/profile.jpg)
profile
profile

링크

[Google](https://google.com)

Google

<https://google.com>

https://google.com

특정 제목으로 이동

  • 현재 템플릿에서 사용 불가
[마크다운](#markdown)

마크다운

체크박스

TODO

  • TODO1
  • TODO2

주석

이것은 마크다운입니다1

Mermaid

Mermaid

플로우차트

graph TD;
A-->B;
A-->C;
B-->D;
C-->D;

시퀀스 다이어그램

sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!

간트 차트

gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram to mermaid
excludes weekdays 2014-01-10
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d

클래스 다이어그램

classDiagram
Class01 <|-- AveryLongClass : Cool
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 --> C2 : Where am i?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
Class08 <--> C2: Cool label

Git 그래프

gitGraph:
options
{
"nodeSpacing": 150,
"nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch

스테이트 다이어그램

stateDiagram
[*] --> Still
Still --> [*]
%% this is a comment
Still --> Moving
Moving --> Still %% another comment
Moving --> Crash
Crash --> [*]

파이 차트

pie
title Key elements in Product X
"Calcium" : 42.96
"Potassium" : 50.05
"Magnesium" : 10.01
"Iron" : 5

  1. 마크다운 주석입니다. 마크다운 문법 확인
Edit this page
Last updated on 2022. 2. 16.