1 Star 1 Fork 7

guyanzijin/vim

forked from tboox/vim 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
markdown2ctags.py 6.39 KB
一键复制 编辑 原始数据 按行查看 历史
ruki 提交于 2017-02-28 22:40 . update markdown ctags
#!/usr/bin/env python
# Copyright (C) 2013 John Szakmeister <john@szakmeister.net>
# All rights reserved.
#
# This software is licensed as described in the file LICENSE.txt, which
# you should have received as part of this distribution.
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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
VimL
1
https://gitee.com/guyanzijin/vim.git
git@gitee.com:guyanzijin/vim.git
guyanzijin
vim
vim
master

搜索帮助