I'm not sure if this is the right place to ask this,so if I'm wrong please let me know where it would be the best place.
I'm working on a project that creates tools customized for several customers. The company policy requires that they get the documentation in word and/or PDF, using a very specific template (available in WORD, and my attempts to translate it in LATEX didn't produce a great output)
The basic document is mostly the same, but some command line option may not be available for a customer, some configuration options may not be available for them, some input file format may be different (a whole section of the document in this case) and the configuration file example is/should be specific to each customer.
I want to generate the documentation automatically, based on the program output (the tool has support to display command line options and configuration options ), a template (not decided if it's going to be a word template or something else) and a minimal (preferably none) customer specific configuration file.
The environment is Linux, and preferred language is python.
Given the above conditions, how would you approach the problem ? Is there some tool that may help here ? Can you suggest any google keywords to search for ?
What I've tried:
- converted the template to latex and using m4 to generate the final latex and convert to PDF - can't really reproduce the PDF output of the WORD
- using python to automate OpenOffice.org (I'm still investigating this)