-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown2ctags.py
executable file
·246 lines (188 loc) · 6.44 KB
/
markdown2ctags.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/env python
# Copyright (C) 2013 John Szakmeister <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file LICENSE.txt, which
# you should have received as part of this distribution.
# https://github.com/jszakmeister/markdown2ctags
import sys
import re
__version__ = '0.1.3'
class ScriptError(Exception):
pass
def ctagNameEscape(str):
return re.sub('[\t\r\n]+', ' ', str)
def ctagSearchEscape(str):
str = str.replace('\t', r'\t')
str = str.replace('\r', r'\r')
str = str.replace('\n', r'\n')
str = str.replace('\\', r'\\')
return str
class Tag(object):
def __init__(self, tagName, tagFile, tagAddress):
self.tagName = tagName
self.tagFile = tagFile
self.tagAddress = tagAddress
self.fields = []
def addField(self, type, value=None):
if type == 'kind':
type = None
self.fields.append((type, value or ""))
def _formatFields(self):
formattedFields = []
for name, value in self.fields:
if name:
s = '%s:%s' % (name, value or "")
else:
s = str(value)
formattedFields.append(s)
return '\t'.join(formattedFields)
def __str__(self):
return '%s\t%s\t%s;"\t%s' % (
self.tagName, self.tagFile, self.tagAddress,
self._formatFields())
def __repr__(self):
return "<Tag name:%s file:%s: addr:%s %s>" % (
self.tagName, self.tagFile, self.tagAddress,
self._formatFields().replace('\t', ' '))
def __cmp__(self, other):
return cmp(str(self), str(other))
@staticmethod
def section(section):
tagName = ctagNameEscape(section.name)
tagAddress = '/^%s$/' % ctagSearchEscape(section.line)
t = Tag(tagName, section.filename, tagAddress)
t.addField('kind', 's')
t.addField('line', section.lineNumber)
parents = []
p = section.parent
while p is not None:
parents.append(ctagNameEscape(p.name))
p = p.parent
parents.reverse()
if parents:
t.addField('section', '|'.join(parents))
return t
class Section(object):
def __init__(self, level, name, line, lineNumber, filename, parent=None):
self.level = level
self.name = name
self.line = line
self.lineNumber = lineNumber
self.filename = filename
self.parent = parent
def __repr__(self):
return '<Section %s %d %d>' % (self.name, self.level, self.lineNumber)
def popSections(sections, level):
while sections:
s = sections.pop()
if s and s.level < level:
sections.append(s)
return
atxHeadingRe = re.compile(r'^(#+)\s+(.*?)(?:\s+#+)?\s*$')
settextHeadingRe = re.compile(r'^[-=]+$')
settextSubjectRe = re.compile(r'^[^\s]+.*$')
def findSections(filename, lines):
sections = []
inCodeBlock = False
previousSections = []
for i, line in enumerate(lines):
# Skip GitHub Markdown style code blocks.
if line.startswith("```"):
inCodeBlock = not inCodeBlock
continue
if inCodeBlock:
continue
m = atxHeadingRe.match(line)
if m:
level = len(m.group(1))
name = m.group(2)
popSections(previousSections, level)
if previousSections:
parent = previousSections[-1]
else:
parent = None
lineNumber = i + 1
s = Section(level, name, line, lineNumber, filename, parent)
previousSections.append(s)
sections.append(s)
else:
m = settextHeadingRe.match(line)
if i and m:
if not settextSubjectRe.match(lines[i - 1]):
continue
name = lines[i-1].strip()
if line[0] == '=':
level = 1
else:
level = 2
popSections(previousSections, level)
if previousSections:
parent = previousSections[-1]
else:
parent = None
lineNumber = i
s = Section(level, name, lines[i-1], lineNumber,
filename, parent)
previousSections.append(s)
sections.append(s)
return sections
def sectionsToTags(sections):
tags = []
for section in sections:
tags.append(Tag.section(section))
return tags
def genTagsFile(output, tags, sort):
if sort == "yes":
tags = sorted(tags)
sortedLine = '!_TAG_FILE_SORTED\t1\n'
elif sort == "foldcase":
tags = sorted(tags, key=lambda x: str(x).lower())
sortedLine = '!_TAG_FILE_SORTED\t2\n'
else:
sortedLine = '!_TAG_FILE_SORTED\t0\n'
output.write('!_TAG_FILE_FORMAT\t2\n')
output.write(sortedLine)
for t in tags:
output.write(str(t))
output.write('\n')
def main():
from optparse import OptionParser
parser = OptionParser(usage = "usage: %prog [options] file(s)",
version = __version__)
parser.add_option(
"-f", "--file", metavar = "FILE", dest = "tagfile",
default = "tags",
help = 'Write tags into FILE (default: "tags"). Use "-" to write '
'tags to stdout.')
parser.add_option(
"", "--sort", metavar="[yes|foldcase|no]", dest = "sort",
choices = ["yes", "no", "foldcase"],
default = "yes",
help = 'Produce sorted output. Acceptable values are "yes", '
'"no", and "foldcase". Default is "yes".')
options, args = parser.parse_args()
if options.tagfile == '-':
output = sys.stdout
else:
output = open(options.tagfile, 'wb')
for filename in args:
f = open(filename, 'rb')
lines = f.read().splitlines()
f.close()
sections = findSections(filename, lines)
genTagsFile(output, sectionsToTags(sections), sort=options.sort)
output.flush()
output.close()
if __name__ == '__main__':
try:
main()
except IOError as e:
import errno
if e.errno == errno.EPIPE:
# Exit saying we got SIGPIPE.
sys.exit(141)
raise
except ScriptError as e:
print >>sys.stderr, "ERROR: %s" % str(e)
sys.exit(1)