Generate rST format documentation for the config options this application Returns a multiline string.
(self)
| 659 | yield from self.emit_help_epilogue(classes) |
| 660 | |
| 661 | def document_config_options(self) -> str: |
| 662 | """Generate rST format documentation for the config options this application |
| 663 | |
| 664 | Returns a multiline string. |
| 665 | """ |
| 666 | return "\n".join(c.class_config_rst_doc() for c in self._classes_inc_parents()) |
| 667 | |
| 668 | def print_description(self) -> None: |
| 669 | """Print the application description.""" |