4464774c7a
8 files: index.md with wiki-links, features overview, navigation guide, markdown showcase (all constructs), about page, changelog, and two guides (sysop handbook, writing content) in a subdirectory. Includes ANSI art splash.txt for the index page header.
1.8 KiB
1.8 KiB
description
| description |
|---|
| Tips for writing vault content |
Writing Content
Tips for creating great content for your BBS-MD vault.
File Structure
Every .md file in your vault directory is a page. Subdirectories create sections:
vault/
index.md <- Landing page (always loads first)
splash.txt <- ANSI art header (optional)
features.md <- Top-level page
guides/
sysop-handbook.md
writing-content.md
Frontmatter
Add YAML frontmatter to your pages for metadata:
---
description: A short summary shown in the directory listing
---
The description field appears beside your file in the Directory listing, helping visitors find what they're looking for.
Linking Between Pages
Wiki-Links (Recommended)
Use double-bracket syntax to link between pages:
[[Page Name]]resolves topage-name.md- Case-insensitive:
[[features]]and[[Features]]both work - Cross-directory:
[[SysOp Handbook]]findsguides/sysop-handbook.md
Standard Links
Standard markdown links work too:
[Click here](features.md)— relative to vault root[Guide](guides/sysop-handbook.md)— path to subdirectory files
Special Links
[[Directory]]— opens the virtual directory listing page
Best Practices
- Start with index.md — it's your front door
- Use frontmatter descriptions — they show up in the directory
- Link generously — wiki-links make your vault navigable
- Keep files small — one topic per page, like a real BBS
- Use all six heading levels — they each have distinct styling
- Add a splash.txt — ANSI art makes everything better
A well-linked vault is a joy to browse. A pile of unlinked pages is a graveyard.