Note: This documentation is not API documentation, but user help documentation (WPF app)

Requirements:

  • Documentation is done by off-site non-techy persons
  • Supports multiple languages
  • Should be able to link to help textes from code (typical pop up bubble next to a textbox)
  • Help should ideally be maintained from one place by non-techy persons
  • Should be easily generated into other formats (PDF etc)
  • Available offline | online | printed
  • Preferably a standard format and not proprietary

Been reading up and down other threads and have a feeling that there is no good platform for these requirements.

My thought is a help documentation in HTML (non-techy can use a editor), available online (maintained one place), but as the system mostly run offline, a version is downloaded locally (and possibly updated when online again). The biggest problem is to link short help texts within the application to some paragraph in the documentation (say a cryptic textbox parameter you forgot what function is) and at the same time have the right localization.. ideally I'd put small help texts like that in resource files (but would not be maintainable from one place..)

I can see some problems with this solution too, so any good thoughts on this matter?

link|improve this question

50% accept rate
1  
This question is not related to WPF at all. Help documentation of an application (regarding WPF or not) is a topic clearly outside the scope of WPF. Also I believe it'll spark a long debates! – eriawan Nov 24 '11 at 11:03
Have you considered Sandcastle with Sandcastle Help File Builder? What about Docbook? – Kent Boogaart Nov 24 '11 at 11:38
@KentBoogaart nope, isn't it just for API documentation? – Islandwind Nov 24 '11 at 12:00
1  
@IslandWind As far as I know, whole MSDN documentation library is generated by SandCastle (or some variation of SandCastle, I somehow don't think Microsoft internally uses the same version they release into the wild). And MSDN is certainly not restricted only to API documentation. Example: msdn.microsoft.com/en-us/library/ms745683.aspx – Matěj Zábský Nov 24 '11 at 12:30
Sandcastle is definitely not just for API docs. It's for whatever you like. – Kent Boogaart Nov 24 '11 at 13:33
feedback

closed as not constructive by Oded, Chris Morgan, mauris, Bill the Lizard Nov 26 '11 at 4:04

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

I recommend Sphinx documentation generator. While it's original idea was to generate documentation for Python, it can now generate documentation to pretty much anything. And it is certainly not limited to API documentation (the whole Sphinx website is IIRC generated by Sphinx itself).

The macro-language i powerful and easy to use, though it is obviously influenced by Python.

As for the second part, I don't think it is a good idea to have multi-lingual documentation with your source code.

Here is nice article about multi-lingual documentation with Sphinx.

link|improve this answer
thanks I will look into it! and there should not be possible with multi-language source code doc.. (just end user documentation and application help, such as info-popups or the whole) – Islandwind Nov 24 '11 at 12:13
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.