cli ¶
Module that contains the command line application.
get_parser ¶
get_parser() -> ArgumentParser
Return the CLI argument parser.
Returns:
-
ArgumentParser–An argparse parser.
Source code in src/robot_markdown/cli.py
33 34 35 36 37 38 39 40 41 42 43 | |
main ¶
Run the main program.
This function is executed when you type robot-markdown or python -m robot_markdown.
Parameters:
Returns:
-
int–An exit code.
Source code in src/robot_markdown/cli.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |