forked from vkocubinsky/SublimeTableEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_lib.py
88 lines (63 loc) · 2.9 KB
/
table_lib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# table_lib.py - pretty print text table.
# Copyright (C) 2012 Free Software Foundation, Inc.
# Author: Valery Kocubinsky
# Package: SublimeTableEditor
# Homepage: https://github.com/vkocubinsky/SublimeTableEditor
# This file is part of SublimeTableEditor.
# SublimeTableEditor is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# SublimeTableEditor is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with SublimeTableEditor. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
from __future__ import division
import csv
try:
from . import table_base as tbase
from . import table_simple_syntax as simple
from . import table_emacs_org_mode_syntax as emacs
from . import table_pandoc_syntax as pandoc
from . import table_multi_markdown_syntax as markdown
from . import table_re_structured_text_syntax as re_structured_text
from . import table_textile_syntax as textile
except ValueError:
import table_base as tbase
import table_simple_syntax as simple
import table_emacs_org_mode_syntax as emacs
import table_pandoc_syntax as pandoc
import table_multi_markdown_syntax as markdown
import table_re_structured_text_syntax as re_structured_text
import table_textile_syntax as textile
def simple_syntax(table_configuration=None):
return create_syntax("Simple", table_configuration)
def emacs_org_mode_syntax(table_configuration=None):
return create_syntax("EmacsOrgMode", table_configuration)
def pandoc_syntax(table_configuration=None):
return create_syntax("Pandoc", table_configuration)
def re_structured_text_syntax(table_configuration=None):
return create_syntax("reStructuredText", table_configuration)
def multi_markdown_syntax(table_configuration=None):
return create_syntax("MultiMarkdown", table_configuration=table_configuration)
def textile_syntax(table_configuration=None):
return create_syntax("Textile", table_configuration=table_configuration)
def create_syntax(syntax_name, table_configuration=None):
modules = {
"Simple": simple,
"EmacsOrgMode": emacs,
"Pandoc": pandoc,
"MultiMarkdown": markdown,
"reStructuredText": re_structured_text,
"Textile": textile
}
if syntax_name in modules:
module = modules[syntax_name]
else:
raise ValueError("Syntax {syntax_name} doesn't supported"
.format(syntax_name=syntax_name))
syntax = module.create_syntax(table_configuration)
return syntax