Comment out all extensions except 'extra'.
[pyblosxom-markdown2] / markdown-plugin.py
index a7c3b95407670676871188eb8d5ac07edcff7681..b96f0f097df2e3d05c27dfd28e55274155b35695 100644 (file)
@@ -41,7 +41,7 @@ PREFORMATTER_ID = 'markdown'
 FILENAME_EXTENSIONS = ('txt','text','mkdn','markdown','md','mdown','markdn','mkd')
 _version__ = '0.2'
 __author__ = 'Benjamin Mako Hill <mako@atdot.cc>'
-__author__ = 'seanh'
+__author__ = 'seanh <snhmnd@gmail.com>'
 
 import re,codecs
 import markdown
@@ -50,14 +50,13 @@ from Pyblosxom import tools
 md = markdown.Markdown(
        #safe_mode=True,
        output_format='html4',
-       extensions=[ 'codehilite', # Requires python-pygments
-                                'extra', # Abbreviations, definition lists, fenced code blocks,
-                                                 # footnotes, headerid and tables.
-                                #'html_tidy', # Enable this if you have libtidy and uTidylib
+       extensions=[ #'codehilite', # Requires python-pygments
+                               'extra',
+                                #'html_tidy', # Requires libtidy and uTidylib
                                 #'imagelinks', # Broken?
                                 #'meta',
                                 #'rss',
-                                'toc',
+                                #'toc',
                                 #'wikilinks'
                           ]
 )

Benjamin Mako Hill || Want to submit a patch?