Files
AutoBuildDocFromDB/MarkdownBuildClass.py
2017-02-22 12:11:07 +08:00

23 lines
960 B
Python
Executable File

# -*- coding:utf-8 -*-
class MarkDownBuild:
table_header = '|字段名称|字段类型|字段含义|\n|:---:|:---:|:---:|\n'
table_content_template = '|%s|%s|%s|\n'
def __init__(self):
pass
def buildMarkdown(self, table_data):
text = '# 数据库文档\n\n'
text += '<a name="返回顶部"></a>\n\n## 数据表列表\n\n'
for table in table_data:
text = text + '* [' + table[0][0] + '(' + table[0][1] + ')](#' + table[0][0] + '_pointer)\n\n'
text += '\n\n## 数据表说明\n\n'
for table in table_data:
text = text + '<a name="'+table[0][0]+'_pointer"></a>\n\n'
text = text + '* ' + table[0][0] + '表(' + table[0][1] + ')[↑](#返回顶部)\n\n'
text += self.table_header
for column in table[1]:
text = text + '|' + column[0] + '|' + column[1] + '|' + column[2] + '|\n'
text += '\n'
return text