Guide for updating voxtype documentation across all locations. Document Location
Update Documentation
Guide for updating voxtype documentation across all locations.
Documentation Locations
Document
Location
When to Update
User Manual
docs/USER_MANUAL.md
New features, usage changes
Configuration Guide
docs/CONFIGURATION.md
New config options
Troubleshooting
docs/TROUBLESHOOTING.md
New error conditions, fixes
FAQ
docs/FAQ.md
Common questions
README
README.md
Major features, installation changes
Website News
website/news/index.html
Every release
GitHub Release
GitHub Releases
Every release
Obsidian Vault
~/Documents/markdown-notes/Voxtype/
Session notes, decisions
Writing Style
Avoid AI writing patterns:
No em-dashes (—) - use colons or separate sentences
No "delve", "leverage", "utilize", "streamline", "robust", "seamless"
No excessive hedging ("It's worth noting...", "Interestingly...")
No punchy one-liners ("And that's the point.", "Simple as that.")
No sentence fragments for effect ("The result? Faster builds.")
Write plainly and directly
User Manual Updates
Location: docs/USER_MANUAL.md
When adding a feature:
Add to table of contents if significant
Create new section with clear heading
Include usage examples with code blocks
Explain the "why" not just the "how"
Configuration Guide Updates
Location: docs/CONFIGURATION.md
For new config options:
Add to the relevant section
Show the TOML syntax
Document the default value
Explain what it does and when to use it
### new_option
Enable the new feature.
```toml
[section]
new_option = true # default: false
`When enabled, this does X which is useful for Y.`
## Troubleshooting Updates
Location: `docs/TROUBLESHOOTING.md`
Format for new issues:
```markdown
### Error: The specific error message
**Cause:** Why this happens
**Solution:**
1. Step one
2. Step two
**Example:**
```bash
command to fix