@@ -4,26 +4,26 @@ Markdown is also supported in the notes field in the **Detail Editors** for [Tra
44
55## Quick Reference
66
7- | ** Element** | Syntax | Output |
8- | ----------------------- | -------------------------------------------------- | ----------------------------------------------------------- |
9- | ** Headings** | ` # Heading 1 ` <br >` ## Heading 2 ` <br >` ### Heading 3 ` | (headings shown below) |
10- | ** Bold** | ` **bold** ` or ` __bold__ ` | ** bold text** |
11- | ** Italic** | ` *italic* ` or ` _italic_ ` | _ italic text_ |
12- | ** Bold+Italic** | ` ***text*** ` or ` ___text___ ` | _ ** bold & italic text** _ |
13- | ** Strikethrough** | ` ~~text~~ ` | ~~ strikethrough text~~ |
14- | ** Quote** | ` > quoted text ` | > quoted text |
15- | ** Alerts** | ` > [!NOTE] ` <br >` > The alert text. ` | (alerts shown below) |
16- | ** Inline code** | `` `code` `` | ` inline code ` |
17- | ** Code block** | ` ```code``` ` | (block shown below) |
18- | ** Horizontal rule** | ` --- ` or ` *** ` | --- |
19- | ** Link** | ` [text](https://example.com) ` | [ text] ( https://example.com ) |
20- | ** Markdown Link** | ` [Markdown Guide](md:Markdown%20Guide) ` | [ Markdown Guide] ( md:Markdown%20Guide ) |
21- | ** Page reference link** | ` [Basic Set, page 45](B45) ` | [ Basic Set, page 45] ( B45 ) |
22- | ** Image** | `  ` | ![ alt] ( https://gurpscharactersheet.com/images/app_icon.svg ) |
23- | ** List (unordered)** | ` - item ` <br >` - item ` | - test<br >- test |
24- | ** List (ordered)** | ` 1. item ` <br >` 2. item ` | 1. item<br >2. item |
25- | ** Table** | See details below | (table shown below) |
26- | ** Escape Markdown** | ` \**escape\** ` | \*\* escape\*\* |
7+ | ** Element** | Syntax | Output |
8+ | ----------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------- |
9+ | ** Headings** | ` # Heading 1 ` <br >` ## Heading 2 ` <br >` ### Heading 3 ` | (headings shown below) |
10+ | ** Bold** | ` **bold** ` or ` __bold__ ` | ** bold text** |
11+ | ** Italic** | ` *italic* ` or ` _italic_ ` | _ italic text_ |
12+ | ** Bold+Italic** | ` ***text*** ` or ` ___text___ ` | _ ** bold & italic text** _ |
13+ | ** Strikethrough** | ` ~~text~~ ` | ~~ strikethrough text~~ |
14+ | ** Quote** | ` > quoted text ` | > quoted text |
15+ | ** Alerts** | ` > [!NOTE] ` <br >` > The alert text. ` | (alerts shown below) |
16+ | ** Inline code** | `` `code` `` | ` inline code ` |
17+ | ** Code block** | ` ```code``` ` | (block shown below) |
18+ | ** Horizontal rule** | ` --- ` or ` *** ` | --- |
19+ | ** Link** | External: ` [text](https://example.com) ` < br >Internal: ` [text](Markdown%20Guide] ` | [ text] ( https://example.com ) < br > [ text ] ( Markdown%20Guide ) |
20+ | ** Markdown Link** | ` [Markdown Guide](md:Markdown%20Guide) ` | [ Markdown Guide] ( md:Markdown%20Guide ) |
21+ | ** Page reference link** | ` [Basic Set, page 45](B45) ` | [ Basic Set, page 45] ( B45 ) |
22+ | ** Image** | `  ` | ![ alt] ( https://gurpscharactersheet.com/images/app_icon.svg ) |
23+ | ** List (unordered)** | ` - item ` <br >` - item ` | - test<br >- test |
24+ | ** List (ordered)** | ` 1. item ` <br >` 2. item ` | 1. item<br >2. item |
25+ | ** Table** | See details below | (table shown below) |
26+ | ** Escape Markdown** | ` \**escape\** ` | \*\* escape\*\* |
2727
2828## Headings
2929
@@ -150,19 +150,19 @@ Use alerts to emphasize critical information. Alerts are displayed with distinct
150150
151151```
152152
153- > [ !NOTE]
153+ > [ !NOTE]
154154> Useful information the reader should know, even when skimming.
155155
156- > [ !TIP]
156+ > [ !TIP]
157157> Helpful advice for doing things better or more easily.
158158
159- > [ !IMPORTANT]
159+ > [ !IMPORTANT]
160160> Key information needed to achieve a goal.
161161
162- > [ !WARNING]
162+ > [ !WARNING]
163163> Urgent info that needs immediate attention to avoid problems.
164164
165- > [ !CAUTION]
165+ > [ !CAUTION]
166166> Advises about risks or negative outcomes of certain actions.
167167
168168---
@@ -243,6 +243,7 @@ You can link to files in the same library using **relative paths**. This makes y
243243
244244- Use ** forward slashes ` / ` ** (not Windows ` \ ` ).
245245- Replace spaces with ` %20 ` .
246+ - The markdown extension (` .md ` ) can be omitted in your links.
246247- ` ./ ` means “this folder.”
247248- ` ../ ` means “go up one folder.”
248249- ` ../../ ` means "go up two folders."
0 commit comments