blob: bbf7aea97a58a11afd0354a5e7f2b6ffb972e69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import sys
if sys.version_info[0] == 3:
from configparser import SafeConfigParser
else:
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
|