-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathinclude.py
140 lines (124 loc) · 5.86 KB
/
include.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# include.py
#
# Copyright 2015 Christopher MacMackin <[email protected]>
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
from __future__ import print_function
import re
import os.path
from codecs import open
from markdown.extensions import Extension
from markdown.preprocessors import Preprocessor
INC_SYNTAX = re.compile(r'([ \t]*)\{!\s*(.+?)\s*!\}')
HEADING_SYNTAX = re.compile( '^#+' )
class MarkdownInclude(Extension):
def __init__(self, configs={}):
self.config = {
'base_path': ['.', 'Default location from which to evaluate ' \
'relative paths for the include statement.'],
'encoding': ['utf-8', 'Encoding of the files used by the include ' \
'statement.'],
'inheritHeadingDepth': [False, 'Increases headings on included ' \
'file by amount of previous heading (combines with '\
'headingOffset option).'],
'headingOffset': [0, 'Increases heading depth by a specific ' \
'amount (and the inheritHeadingDepth option). Defaults to 0.'],
'throwException': [False, 'When true, if the extension is unable '\
'to find an included file it will throw an '\
'exception which the user can catch. If false '\
'(default), a warning will be printed and '\
'Markdown will continue parsing the file.']
}
for key, value in configs.items():
self.setConfig(key, value)
def extendMarkdown(self, md, md_globals):
md.preprocessors.register(IncludePreprocessor(md,self.getConfigs()), 'include', 101)
class IncludePreprocessor(Preprocessor):
'''
This provides an "include" function for Markdown, similar to that found in
LaTeX (also the C pre-processor and Fortran). The syntax is {!filename!},
which will be replaced by the contents of filename. Any such statements in
filename will also be replaced. This replacement is done prior to any other
Markdown processing. All file-names are evaluated relative to the location
from which Markdown is being called.
'''
def __init__(self, md, config):
super(IncludePreprocessor, self).__init__(md)
self.base_path = config['base_path']
self.encoding = config['encoding']
self.inheritHeadingDepth = config['inheritHeadingDepth']
self.headingOffset = config['headingOffset']
self.throwException = config['throwException']
def run(self, lines):
done = False
bonusHeading = ''
while not done:
for loc, line in enumerate(lines):
m = INC_SYNTAX.search(line)
if m:
tabs = m.group(1)
filename = m.group(2)
filename = os.path.expanduser(filename)
if not os.path.isabs(filename):
filename = os.path.normpath(
os.path.join(self.base_path,filename)
)
try:
with open(filename, 'r', encoding=self.encoding) as r:
text = r.readlines()
if len(tabs):
text = [tabs+line for line in text]
except Exception as e:
if not self.throwException:
print('Warning: could not find file {}. Ignoring '
'include statement. Error: {}'.format(filename, e))
lines[loc] = INC_SYNTAX.sub('',line)
break
else:
raise e
line_split = INC_SYNTAX.split(line)
if len(text) == 0:
text.append('')
for i in range(len(text)):
# Strip the newline, and optionally increase header depth
if self.inheritHeadingDepth or self.headingOffset:
if HEADING_SYNTAX.search(text[i]):
text[i] = text[i].rstrip('\r\n')
if self.inheritHeadingDepth:
text[i] = bonusHeading + text[i]
if self.headingOffset:
text[i] = '#' * self.headingOffset + text[i]
else:
text[i] = text[i].rstrip('\r\n')
text[0] = line_split[0] + text[0]
text[-1] = text[-1] + line_split[-1]
lines = lines[:loc] + text + lines[loc+1:]
break
else:
h = HEADING_SYNTAX.search(line)
if h:
headingDepth = len(h.group(0))
bonusHeading = '#' * headingDepth
else:
done = True
return lines
def makeExtension(*args,**kwargs):
return MarkdownInclude(kwargs)