Skip to content

Commit 8e79e09

Browse files
authored
Add links for export templates, name generators, and scripting guide (#433)
1 parent 507bddd commit 8e79e09

File tree

5 files changed

+32
-27
lines changed

5 files changed

+32
-27
lines changed
File renamed without changes.

Library/Markdown/User Guide/Home.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,15 @@ If you can’t find what you’re looking for:
6060
### Advanced Features
6161

6262
- **Content Creation**
63-
- [Character templates](Character%20Templates)
63+
- [Character Templates](Character%20Templates)
6464
- [Custom Content](Custom%20Content)
6565
- [Trait Modifiers](Trait%20Modifiers)
6666
- [Equipment Modifiers](Equipment%20Modifiers)
6767
- [Prerequisites](Prerequisites)
6868
- [Defaults](Defaults)
6969
- [Features](Features)
7070
- [Contributing to the Master Library](Contributing%20to%20the%20Master%20Library)
71+
- [Export Templates](Export%20Templates)
7172
- **Advanced Tools**
7273
- [Calculator](Calculator)
7374
- [Loot Sheets](Loot%20Sheets)
@@ -89,6 +90,7 @@ If you can’t find what you’re looking for:
8990
- [Operators](Operators)
9091
- [Markdown Guide](Markdown%20Guide)
9192
- [Scripting Guide](Scripting%20Guide)
93+
- [Name Generators](Name%20Generators)
9294

9395
### Troubleshooting
9496

Library/Markdown/User Guide/Markdown Guide.md

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -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](url)` | ![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](url)` | ![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."
File renamed without changes.

Library/Markdown/User Guide/_sidebar.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,15 @@
3838
<summary>Advanced Features</summary>
3939

4040
- **Content Creation**
41-
- [Character templates](Character%20Templates)
41+
- [Character Templates](Character%20Templates)
4242
- [Custom Content](Custom%20Content)
4343
- [Trait Modifiers](Trait%20Modifiers)
4444
- [Equipment Modifiers](Equipment%20Modifiers)
4545
- [Prerequisites](Prerequisites)
4646
- [Defaults](Defaults)
4747
- [Features](Features)
4848
- [Contributing to the Master Library](Contributing%20to%20the%20Master%20Library)
49+
- [Export Templates](Export%20Templates)
4950
- **Advanced Tools**
5051
- [Calculator](Calculator)
5152
- [Loot Sheets](Loot%20Sheets)
@@ -73,6 +74,7 @@
7374
- [Operators](Operators)
7475
- [Markdown Guide](Markdown%20Guide)
7576
- [Scripting Guide](Scripting%20Guide)
77+
- [Name Generators](Name%20Generators)
7678

7779
</details>
7880

0 commit comments

Comments
 (0)