recognize markdown file extension as Markdown language

This commit is contained in:
Alan Hamlett 2013-11-03 11:34:54 -08:00
parent 4e8d3ead82
commit 7ab0d54ec9
1 changed files with 2 additions and 1 deletions

View File

@ -25,8 +25,9 @@ log = logging.getLogger(__name__)
# force file name extensions to be recognized as a certain language
EXTENSIONS = {
'md': 'Markdown',
'j2': 'HTML',
'markdown': 'Markdown',
'md': 'Markdown',
}
TRANSLATIONS = {
'CSS+Genshi Text': 'CSS',