template.Dictionary.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-doc Show documentation
Show all versions of smart-doc Show documentation
Smart-doc is a tool that supports both JAVA RESTFUL API and Apache Dubbo RPC interface document
generation.
<%if(isNotEmpty(dictList)){%>
# ${dictListTitle!"Data Dictionaries"}
<%
for(dict in dictList){
%>
## ${dict.title}
| Code | Type | Description |
|------|------|-------------|
<%
for(dataDict in dict.dataDictList){
%>
|${dataDict.value}|${dataDict.type}|${htmlEscape(dataDict.desc)}|
<%}%>
<%}%>
<%}%>