Mercurial > wikked
view wk.py @ 344:43b18814420d
Previewing an edited page is now using the proper URL.
This fixes the state of Wiki links in the text.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 16 Sep 2015 23:51:59 -0700 |
parents | 2dd7535045eb |
children |
line wrap: on
line source
#!/usr/local/bin/python import sys import logging import colorama from wikked.witch import ColoredFormatter, main # Configure logging. colorama.init() root_logger = logging.getLogger() handler = logging.StreamHandler(stream=sys.stdout) handler.setFormatter(ColoredFormatter('%(message)s')) root_logger.addHandler(handler) if __name__ == "__main__": main()