forked from lxm_tools/screw
🐛 修复MD格式错位问题
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
<#if (description)??>
|
||||
**文档描述:** ${description!''}
|
||||
</#if>
|
||||
|
||||
| 表名 | 说明 |
|
||||
| :-------------------- | :--------- |
|
||||
<#list tables>
|
||||
@@ -38,6 +39,7 @@
|
||||
</#items>
|
||||
</#list>
|
||||
<#list tables><#items as t>
|
||||
|
||||
**表名:** <a id="${t.tableName!''}">${t.tableName!''}</a>
|
||||
|
||||
**说明:** ${t.remarks!''}
|
||||
|
||||
@@ -28,12 +28,14 @@
|
||||
#if(${_data.description})
|
||||
**文档描述:** $!{_data.description}
|
||||
#end
|
||||
|
||||
| 表名 | 说明 |
|
||||
| :-------------------- | :--------- |
|
||||
#foreach($t in $_data.tables)
|
||||
| [$!{t.tableName}](#$!{t.tableName}) | $!{t.remarks} |
|
||||
#end
|
||||
#foreach($t in $_data.tables)
|
||||
|
||||
**表名:** <a id="$!{t.tableName}">$!{t.tableName}</a>
|
||||
|
||||
**说明:** $!{t.remarks}
|
||||
|
||||
Reference in New Issue
Block a user