Based on the previous feedback, I've converted the current wiki documents to markdown format (via the pandoc tool) and then touched up the translation. The attached patch shows what moving the wiki documents into the seabios repo might look like. (It creates a new "docs/" directory with files for each page currently on the wiki.)
The pandoc tool seams to be able to translate back to mediawiki format without much issue. So, a possible workflow would be to use the git patch submission process to update documentation, and then use pandoc to translate the pages and push them to the wiki. (Or, if at some future point the wiki is decommissioned, then use pandoc or a similar tool to create html directly.)
Thoughts? -Kevin
Kevin O'Connor (1): Add wiki documentation to repository
docs/Build_overview.md | 80 +++++++++++ docs/Debugging.md | 69 +++++++++ docs/Developer_Documentation.md | 24 ++++ docs/Developer_links.md | 86 +++++++++++ docs/Download.md | 25 ++++ docs/Execution_and_code_flow.md | 178 +++++++++++++++++++++++ docs/Mailinglist.md | 8 ++ docs/Memory_Model.md | 244 ++++++++++++++++++++++++++++++++ docs/README | 5 + docs/Releases.md | 305 ++++++++++++++++++++++++++++++++++++++++ docs/SeaBIOS.md | 15 ++ 11 files changed, 1039 insertions(+) create mode 100644 docs/Build_overview.md create mode 100644 docs/Debugging.md create mode 100644 docs/Developer_Documentation.md create mode 100644 docs/Developer_links.md create mode 100644 docs/Download.md create mode 100644 docs/Execution_and_code_flow.md create mode 100644 docs/Mailinglist.md create mode 100644 docs/Memory_Model.md create mode 100644 docs/README create mode 100644 docs/Releases.md create mode 100644 docs/SeaBIOS.md