Run Markdown from the command line.
()
| 85 | 'output_format': options.output_format}, options.verbose |
| 86 | |
| 87 | def run(): |
| 88 | """Run Markdown from the command line.""" |
| 89 | |
| 90 | # Parse options and adjust logging level if necessary |
| 91 | options, logging_level = parse_options() |
| 92 | if not options: sys.exit(0) |
| 93 | if logging_level: logging.getLogger('MARKDOWN').setLevel(logging_level) |
| 94 | |
| 95 | # Run |
| 96 | markdown.markdownFromFile(**options) |
nothing calls this directly
no test coverage detected