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:
-
Heading 1 格式化為:
Heading 1
============ -
Heading 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.
-
-
區塊引言可以包括其他的 Markdown 元素,包括標題、清單與程式碼區塊:
> ## 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");
-
Markdown 支援排序 (編號) 與無序 (項目符號) 清單。
-
無序清單使用星號、加號和連字號 — 可交換地 — 做為清單標記:
* Red
* Green
* Blue
等同於:
+ Red
+ Green
+ Blue
也等同於:
- Red
- Green
- Blue
-
排序清單則使用數字接著一個英文句點:
1. First priority
2. Second priority
3. Third priority