blob: 6690eed7ed2c56fba0bae9a23e5080b095061475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from ConfigParser import SafeConfigParser
class MarkdownSyntaxError(Exception):
pass
class CustomConfigParser(SafeConfigParser):
def get(self, section, option):
value = SafeConfigParser.get(self, section, option)
if option == 'extensions':
if len(value.strip()):
return value.split(',')
else:
return []
if value.lower() in ['yes', 'true', 'on', '1']:
return True
if value.lower() in ['no', 'false', 'off', '0']:
return False
return value
|