blob: 0128c7d25a6152efac3d03dd865966079617693c [file] [log] [blame]
<a name="#${funcInfo.functionName}"></a>
#[[##]]# ${funcInfo.functionName}
<pre>
${util.funcSummary($funcInfo)}
</pre>
${funcInfo.docString}
**PARAMETERS**
#if (!$funcInfo.getParameterList().isEmpty())
| Name | Description | Default Value |
| :-------------: | :-------------: | :-------------: |
#foreach ($param in $funcInfo.getParameterList())
| <a name="${funcInfo.functionName}-${param.name}"></a>$param.name | #if(!$param.docString.isEmpty()) ${util.markdownCellFormat($param.docString)} #else <p align="center"> - </p> #end | #if(!$param.getDefaultValue().isEmpty()) <code>$param.getDefaultValue()</code> #else none #end|
#end
#end