Workflow to Turn Wiki content into a system manual - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T11:24:51Z http://stackoverflow.com/feeds/question/618508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual 4 Workflow to Turn Wiki content into a system manual PaulHurleyuk 2009-03-06T11:21:58Z 2009-03-09T01:43:29Z <p>Hello,</p> <p>We're in the middle of deploying a new software system to lot's of users in lot's of places (200+ users over 8 countries). In the past we've written a manual for the users, then update it every so often. This works ok, in that all the users ahve the same manual and it covers the main things but it has it's problems, like it doesn't get updated that often, we sometimes miss updates, and some users will have old copies.</p> <p>We've been talking about using a wiki during the testing and deployment phases to build a knowledge base about the system. Ideally we'd then like some way to convert that into some form fo electronic document that we can then 'pretty-fie' and send out as the official manual, as well as letting users use and update the wiki.</p> <p>Has anyone else done anything similar ? Any suggestions for wiki systems, workflows, document formats etc?</p> <p>Thanks</p> <p>Paul.</p> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/618522#618522 4 Answer by Node for Workflow to Turn Wiki content into a system manual Node 2009-03-06T11:27:22Z 2009-03-06T11:27:22Z <p>Most wikis support export via PDF e.g.:</p> <ul> <li><a href="http://www.mediawiki.org/wiki/Extension:Pdf%5FExport" rel="nofollow">MediaWiki PDF Export</a> </li> <li><a href="http://www.dokuwiki.org/plugin:html2pdf" rel="nofollow">DokuWiki PDF Export</a></li> <li><a href="http://www.wikimatrix.org/wiki/TWiki:PDF%20Export" rel="nofollow">TWiki PDF Export</a></li> </ul> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/618523#618523 0 Answer by Mark Pim for Workflow to Turn Wiki content into a system manual Mark Pim 2009-03-06T11:27:51Z 2009-03-06T11:27:51Z <p>How are you storing the help source at the moment? Is it MS Word files, MS help, LaTeX?</p> <p>If you put your help source files under version control then you will get all the benefits of a wiki without having to migrate to a new system - people can make edits to the help files easily - those changes can be tracked, reverted etc. and you get the prettified manuals as before.</p> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/618530#618530 1 Answer by ConcernedOfTunbridgeWells for Workflow to Turn Wiki content into a system manual ConcernedOfTunbridgeWells 2009-03-06T11:29:07Z 2009-03-06T12:38:23Z <p>You can write something that generates <a href="http://www.ctan.org" rel="nofollow">LaTeX</a> from the wiki and renders a manual to PDF. With packages like <a href="http://www.tug.org/applications/hyperref/" rel="nofollow">hyperref</a> you can retain cross-references as hyperlinks. </p> <p>Additionally, you can integrate content from multiple sources such as a data dictionary into the LaTeX document, which can be mixed and matched with the wiki content. You could also set the architecture up so it can support cross-referencing that goes either way.</p> <p><a href="http://www.adobe.com/uk/products/framemaker/?sdid=EGQWM" rel="nofollow">Framemaker</a> could also support this using generated <a href="http://help.adobe.com/en%5FUS/FrameMaker/9.0/MIF%5FReference/MIF%5FReference.pdf" rel="nofollow">MIF</a> files, and you could also use <a href="http://lout.wiki.sourceforge.net/" rel="nofollow">Lout</a> in a similar way or convert your wiki content to <a href="http://www.docbook.org/" rel="nofollow">docbook,</a> which would allow you to use any of the many rendering options available to that format.</p> <p>As an aside, the following Stackoverflow postings discuss various systems for maintaining documentation.</p> <ul> <li><p><a href="http://stackoverflow.com/questions/371654/application-not-a-markup-language-for-producing-a-user-manual">Application (Not a Markup Language) for Producing a User Manual</a></p></li> <li><p><a href="http://stackoverflow.com/questions/501241/can-latex-be-used-for-producing-any-documentation-that-accompanies-software">Can LaTeX be used for producing any documentation that accompanies software?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/12537/what-tools-are-used-to-write-documentation">What tools are used to write documentation?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/314117/what-tools-does-your-team-use-for-writing-user-manuals">What tools does your team use for writing user manuals?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/409717/how-best-to-write-documentation-ideally-in-latex-targeting-both-the-web-html">How best to write documentation (ideally in latex) targeting both the web (html) and paper (pdf)? </a></p></li> <li><p><a href="http://stackoverflow.com/questions/55622/best-tools-for-working-with-docbook-xml-documents">Best tool(s) for working with DocBook XML documents?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook">What is the recommended toolchain for formatting XML DocBook?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/303877/is-a-successor-for-tex-latex-in-sight">Is a successor for TeX/LaTeX in sight?</a></p></li> </ul> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/618604#618604 0 Answer by dangph for Workflow to Turn Wiki content into a system manual dangph 2009-03-06T11:59:20Z 2009-03-06T11:59:20Z <p>I followed Node's links and came across some mediawiki pages that I thought were noteworthy.</p> <ul> <li><a href="http://www.mediawiki.org/wiki/Extension:OpenDocument%5FExport" rel="nofollow">Extension:OpenDocument Export</a></li> <li><a href="http://www.mediawiki.org/wiki/Extension:PDF%5FWriter" rel="nofollow">Extension:PDF Writer</a></li> <li><a href="http://www.mediawiki.org/wiki/Category:Data%5Fextraction%5Fextensions" rel="nofollow">Category:Data extraction extensions</a></li> </ul> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/618732#618732 1 Answer by Aidan Ryan for Workflow to Turn Wiki content into a system manual Aidan Ryan 2009-03-06T12:46:17Z 2009-03-06T12:46:17Z <p><a href="http://www.madcapsoftware.com/products/flare/" rel="nofollow">Madcap Flare</a> is a help-and-manual authoring tool that uses HTML for the source of each topic. You could pretty easily do a mass import of the Wiki pages. Would then require some cleaning but after that you have a nice single-source system that can output CHM, web-browsable help, PDF, DOC/DOCX, etc.</p> http://stackoverflow.com/questions/618508/workflow-to-turn-wiki-content-into-a-system-manual/624740#624740 0 Answer by pfctdayelise for Workflow to Turn Wiki content into a system manual pfctdayelise 2009-03-09T01:43:29Z 2009-03-09T01:43:29Z <p>I gave a <a href="http://stackoverflow.com/questions/447216/web-pages-to-print-media-solutions/618009#618009">previous answer</a> which may be useful for the "wiki to PDF" part -- look at using the open source PediaPress code or functionality. You can get ODFs from it too, although their PDFs are already quite pretty (but you might want to rebrand it and restyle it for your company I suppose).</p>