Open-source software for Joomla, Gitea, and web platforms. Home of MokoSuite, MokoGitea, and MokoCLI.
Tennessee
standards/Wiki-Editing.-
Wiki Editing Standards
Page Structure
Every wiki page should follow this structure:
- Title — H1 heading matching the page name
- Content — organized with H2/H3 subheadings
- Revision History — table at the bottom of every page
Revision History Table
Every wiki page must include a revision history table at the bottom:
## Revision History
| Date | Author | Changes |
|------|--------|---------|
| 2026-06-21 | jmiller | Initial creation |
Update this table whenever you modify a page.
Naming Conventions
- Page names: PascalCase with hyphens (e.g.,
Coding-Standards) - Folder names: lowercase (e.g.,
standards/,cli/,api/) - Special pages:
Home(landing),_Footer(footer content) - Sidebar is auto-generated — do NOT create
_Sidebar.md
Linking
- Use relative links for wiki pages:
[Branch Policy](standards/Branch-Policy) - Use full URLs for repo links:
[mokocli](https://git.mokoconsulting.tech/MokoConsulting/mokocli) - Use anchor links for same-page sections:
[see rules](#rules)
Formatting
- Use tables for structured data
- Use code blocks with language hints (
php,go, ```bash) - Use bold for emphasis, not ALL CAPS
- Keep lines under 120 characters where practical
Revision History
| Date | Author | Changes |
|---|---|---|
| 2026-06-21 | jmiller | Initial creation; added revision table requirement |
Pages