|
Revision 114, 0.5 kB
(checked in by mgalloy, 15 months ago)
|
|
Improving docs, reporting version.
|
| Line | |
|---|
| 1 | ; docformat = 'rst' |
|---|
| 2 | |
|---|
| 3 | ;+ |
|---|
| 4 | ; Build mgunit docs. |
|---|
| 5 | ;- |
|---|
| 6 | pro mgunit_build_userdocs |
|---|
| 7 | compile_opt strictarr |
|---|
| 8 | |
|---|
| 9 | root = mg_src_root() |
|---|
| 10 | |
|---|
| 11 | idldoc, root=filepath('', subdir='src', root=root), $ |
|---|
| 12 | output=filepath('', subdir='api-userdocs', root=root), $ |
|---|
| 13 | overview='overview.txt', $ |
|---|
| 14 | /nosource, $ |
|---|
| 15 | title=string(mgunit_version(), format='(%"mgunit %s API documentation")'), $ |
|---|
| 16 | subtitle='Unit testing framework for IDL', $ |
|---|
| 17 | /embed, /user, format_style='rst', markup_style='rst' |
|---|
| 18 | end |
|---|