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");
-
Markdown は、順序付き (番号付き) リストと順序なし (箇条書き) リストをサポートしています。
-
順序なしのリストでは、アスタリスク、プラス、ハイフンを同じ意味でリストマーカーとして使用します。
* Red
* Green
* Blue
以下と同等
+ Red
+ Green
+ Blue
および:
- Red
- Green
- Blue
-
番号付きリストでは、数字の後にピリオドが続きます。
1. First priority
2. Second priority
3. Third priority