Markdown 가이드
PlainApp 노트에서 사용하는 Markdown 문법 빠른 참조 — 제목, 목록, 표, 코드 블록 등.
제목
줄 시작에 #을 붙입니다. # 개수가 수준을 나타내며 1(가장 큼)부터 6(가장 작음)입니다. 제목 앞뒤에는 빈 줄을 두세요.
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6Heading level 1
Heading level 2
Heading level 3
Heading level 4
Heading level 5
Heading level 6
팁: PlainApp 편집기 툴바의 '제목' 버튼으로 자동 삽입할 수 있습니다.
단락과 줄바꿈
단락은 빈 줄로 구분합니다. 단락 안에서 줄을 바꾸려면 줄 끝에 백슬래시를 붙입니다.
First paragraph.
Second paragraph.First paragraph.
Second paragraph.
Line one\
Line twoLine one
Line two
굵게 및 기울임
텍스트를 별표 두 개로 감싸면 굵게, 한 개로 감싸면 기울임꼴이 됩니다. 물결표 두 개는 취소선입니다.
**bold text**bold text
*italic text*italic text
~~struck through~~struck through
**bold and *nested italic***bold and nested italic
목록
줄 시작에 - 는 글머리 기호, 1. 는 번호 목록입니다. 공백으로 들여쓰면 중첩됩니다. 체크리스트는 - [ ], 완료 시 - [x] 를 사용합니다.
- One
- Two
- Three- One
- Two
- Three
1. First
2. Second
3. Third- First
- Second
- Third
- [ ] Buy milk
- [x] Write the note- Buy milk
- Write the note
- Fruit
- Apple
- Banana
- Vegetable- Fruit
- Apple
- Banana
- Vegetable
인용 및 콜아웃
줄 시작에 > 를 붙이면 인용입니다. PlainApp에서는 > [!note] 로 강조 상자(콜아웃)를 만들 수 있습니다.
> This is a blockquote.This is a blockquote.
> [!note] Heads up
> This renders as a callout box in PlainApp.[!note] Heads up This renders as a callout box in PlainApp.
코드
인라인 코드는 백틱 하나로 감쌉니다. 코드 블록은 백틱 세 개로 감싸고 뒤에 언어 이름을 붙이면 구문 강조가 적용됩니다.
Use `inline code` for short snippets.Use inline code for short snippets.
```js
console.log("hello");
```console.log("hello");
팁: 편집기 툴바의 '코드' 버튼으로 인라인 코드와 코드 블록을 삽입할 수 있습니다.
링크
[링크 텍스트](URL) 형식입니다. URL을 꺾쇠 괄호로 감싸면 그 자체가 링크가 됩니다. 링크 안에 이미지를 넣으면 클릭 가능한 이미지가 됩니다.
[PlainApp website](https://plainapp.app)<https://plainapp.app>이미지
링크와 같지만 앞에 느낌표를 붙입니다: .
표
파이프
| Left | Center | Right |
|:-----|:------:|------:|
| a | b | c |
| d | e | f || Left | Center | Right |
|---|---|---|
| a | b | c |
| d | e | f |
팁: 편집기 툴바의 '표' 버튼으로 빈 표 뼈대를 삽입할 수 있습니다.
수평선
대시, 별표 또는 밑줄 세 개 이상을 한 줄에 두면 구분선이 됩니다. 위에 빈 줄이 없으면 이전 줄이 제목이 되니 주의하세요.
First section.
---
Second section.First section.
Second section.
이스케이프
Markdown이 형식을 지정하는 문자(* _ #, 백틱 등) 앞에 백슬래시를 붙이면 그대로 표시됩니다.
\*not italic\**not italic*
\# not a heading# not a heading
인라인 HTML
PlainApp 노트는 일부 HTML 태그도 지원합니다: 밑줄, 하이라이트, 글자 색, 접을 수 있는 details.
<u>underlined text</u>underlined text
<mark>highlighted text</mark>highlighted text
<font color="#8b5cf6">colored text</font>colored text
<details>
<summary>Click to expand</summary>
Hidden content here.
</details>Click to expand
Hidden content here.수학 등
위첨자 x^2^, 아래첨자 H~2~O, 인라인 수식 $E = mc^2$, $$ 수식 블록, 각주 [^1], 렌더링 시 숨겨지는 %% 주석 %%
x^2^ + y^3^x^2^ + y^3^
H~2~OH2O
Inline math $E = mc^2$ and a block:
$$
a^2 + b^2 = c^2
$$Inline math $E = mc^2$ and a block: $$ a^2 + b^2 = c^2 $$
See the footnote[^1] for details.
[^1]: This is the footnote text.See the footnote[^1] for details.
[^1]: This is the footnote text.
%% This comment stays hidden in PlainApp %%%% This comment stays hidden in PlainApp %%
팁: PlainApp 노트에서는 수식·각주·콜아웃이 리치 블록으로 렌더링됩니다. 여기의 '결과' 열은 일반 웹 출력입니다.