diff piecrust/formatting/markdownformatter.py @ 1061:8178671f9a04

formatters: Remove Hoedown formatter, split it off to a pluging. Its availability was spotty depending on the platform (because `misaka` doesn't have binaries available for even Windows, for instance). So it was split off to a plugin that the user can install if needed.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 13 Feb 2018 13:32:09 -0800
parents 8adc27285d93
children
line wrap: on
line diff
--- a/piecrust/formatting/markdownformatter.py	Tue Feb 13 11:12:29 2018 -0800
+++ b/piecrust/formatting/markdownformatter.py	Tue Feb 13 13:32:09 2018 -0800
@@ -2,7 +2,7 @@
 
 
 class MarkdownFormatter(Formatter):
-    FORMAT_NAMES = ['pymarkdown']
+    FORMAT_NAMES = ['markdown', 'mdown', 'md']
     OUTPUT_FORMAT = 'html'
 
     def __init__(self):