html_documentation.txt 737 B

123456789101112131415161718192021222324
  1. HOWTO document in this GRASS version?
  2. - source code docs: use doxygen style
  3. example: lib/proj/
  4. other libs
  5. - modules:
  6. - write a file 'description.html' (see other modules for how to do that)
  7. - you can add figures (PNG format), the figure name prefix
  8. should be the module name
  9. - header information: auto-generated
  10. The header information is automatically added during the build
  11. process. You can generate the header HTML to stdout by running
  12. the module with the --html-description qualifier:
  13. g.module --html-description
  14. - see also this script: tools/build_html_index.html
  15. - The Programmers' manual can by created from the inline Doxygen comments with:
  16. make htmldocs (or)
  17. make pdfdocs