Document Notes
Add text, Markdown, and hyperlinks into a Document notes panel.

-
Click the Document notes icon (
) on the Document panel to open the Document notes panel:
The following 3 options are displayed at the top right of the panel:
-
Refresh notes (
) - Refreshes the Document notes panel to show the latest notes.
-
Edit notes (
) - Opens the Document notes editor
-
X (Close) - Closes the Document notes panel.
-
-
Click the Edit notes icon (
) to open the Document notes editor, and enter any text, markup, or hyperlinks related to the current document, as required:
The following options are available from the top right of the panel when you are editing a Document note:
-
Apply - Applies any updated notes to the Document note.
-
Cancel - Cancels application of the updated notes. The Document note closes and you are taken back to the Document notes main panel.
-
Preview (
) - Displays a preview of the Document note.
-
X (Close) - Closes the Document notes' edit panel. You are taken back to the Document notes main panel.
-
-
Click the Preview icon (
) to show a preview of the written Document note in the lower half of the panel:
-
When satisfied with the Document note, click the Apply link to update the note with the latest edits.
-
Click X to close the Notes panel, if required.

The Document notes panel accepts traditional Markdown. The following shows an example with Markdown formatting:
Some of the Markdown formatting that can be used in the Document notes panel is outlined below:
-
헤딩 1이 다음과 같이 서식이 지정됩니다.
Heading 1
============ -
헤딩 2가 다음과 같이 서식이 지정됩니다.
Heading 2
-------------- -
# This is also a heading 1
-
## This is a heading 2
-
###### This is a heading 6
-
# This is also a heading 1#
-
## This is also a heading 2##
-
### This is also a heading 3###
-
긴 인용문을 사용한 단락은 다음이 될 수 있습니다.
-
> This is a blockquote with two paragraphs. You can format it this way,
> and it will display appropriately.
> Markdown is very versatile.
>
> This is the second paragraph within a blockquote.
> Markdown is very versatile.
-
> This is a also blockquote with two paragraphs. Showing another way
to format with Markdown.
> Another section would appear here.
-
-
긴 인용문에는 헤더, 목록, 코드 블록을 포함한 그 밖의 마크다운 요소가 포함될 수 있습니다.
> ## This is a header.
>
> 1. This is the first list item.
> 2. This is the second list item.
>
> Here's some example code:
>
> return shell_exec("echo $input | $markdown_script");
-
마크다운은 순서가 지정되거나(번호가 매겨진) 순서가 지정되지 않은(글머리 기호) 목록을 지원합니다.
-
순서가 지정되지 않은 목록은 별표, 펄스, 하이픈을 상호 교환하여 목록 마커로 사용합니다.
* Red
* Green
* Blue
다음과 같음:
+ Red
+ Green
+ Blue
및:
- Red
- Green
- Blue
-
순서가 지정된 목록은 번호 다음에 마침표를 사용합니다.
1. First priority
2. Second priority
3. Third priority