|
195 | 195 | # 'html' assumes the file is html and just copies it |
196 | 196 | COMPILERS = { |
197 | 197 | "rest": ('.rst', '.txt'), |
198 | | - #"markdown": ('.md', '.mdown', '.markdown'), |
| 198 | + "markdown": ('.md', '.mdown', '.markdown'), |
199 | 199 | "textile": ('.textile',), |
200 | 200 | "txt2tags": ('.t2t',), |
201 | 201 | "bbcode": ('.bb',), |
|
209 | 209 | # Pandoc detects the input from the source filename |
210 | 210 | # but is disabled by default as it would conflict |
211 | 211 | # with many of the others. |
212 | | - "pandoc": ( '.md', '.mdown','.markdown'), |
| 212 | + # "pandoc": ( '.md', '.mdown','.markdown'), |
213 | 213 | } |
214 | 214 |
|
215 | 215 | # Create by default posts in one file format? |
|
577 | 577 | # done in the code, hope you don't mind ;-) |
578 | 578 | # Note: most Nikola-specific extensions are done via the Nikola plugin system, |
579 | 579 | # with the MarkdownExtension class and should not be added here. |
580 | | -MARKDOWN_EXTENSIONS = ['extra','toc','markdown.extensions.extra'] |
| 580 | +MARKDOWN_EXTENSIONS = ['extra', 'toc', 'codehilite', 'tables', 'fenced_code','markdown.extensions.extra'] |
581 | 581 |
|
582 | 582 | # Social buttons. This is sample code for AddThis (which was the default for a |
583 | 583 | # long time). Insert anything you want here, or even make it empty. |
|
0 commit comments