====== Wiki Maintenance ====== Technical documentation for maintaining the folk.zone wiki. ===== Accessing the Wiki ===== The wiki content lives in the folkzone-new/wiki-live directory. This directory is mirrored to the DokuWiki container volume. ===== Local Development ===== To edit wiki content locally: 1. Edit .txt files in folkzone-new/wiki-live/ 2. Changes are automatically reflected in the running DokuWiki instance 3. Use DokuWiki syntax for formatting ===== DokuWiki Syntax ===== * **Headers**: Use ===== for H1, ==== for H2, etc. * **Links**: [[namespace:page|Display Text]] or [[page|Display Text]] * **Bold**: **text** * **Italic**: //text// * **Code**: ''text'' * **Lists**: Use * for bullet points,: for numbered lists * **Code blocks**: your code here ===== Link Checking ===== Run the link checking script to ensure bidirectional links: ```bash python3 wiki_linkcheck.py --fix ``` This ensures all child pages link back to their parent namespace. ===== Backup ===== The wiki content is in Git. Regular commits ensure backup: ```bash cd folkzone-new/wiki-live git add . git commit -m "Update wiki content" git push ``` ===== See Also ===== * [[meta:hygiene|Wiki Hygiene Rules]]: Community guidelines * [[meta:signup|Wiki Sign Up]]: How to get an account * [[meta:editing|How to Be a Good Wiki Editor]]: Editing guidelines * [[meta:focus|What We're Looking For]]: Content priorities * [[wiki:start|DokuWiki Documentation]]: DokuWiki-specific docs Last updated: 2026-06-19 * [[start|Return to wiki home]]