mxdocgen
Version:
A small tool that mimics the documentation generation capabilities offered in Mendix Studio Pro, but with greater flexibility. It uses the Mendix Model SDK to extract information from a Mendix model, which is then fed into a set of templates to generate
37 lines (34 loc) • 885 B
HTML
<h4 id='{{ID}}'>{{TypeName}} '{{Name}}'</h4>
<p>{{Documentation}}</p>
<h5>Parameters</h5>
{{#HasParameters}}
<table class='table table-striped table-bordered'>
<colgroup>
<col style="width: 20%"/>
<col style="width: 20%"/>
<col style="width: 60%"/>
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Documentation</th>
</tr>
</thead>
<tbody>
{{#Parameters}}
<tr>
<td>{{Name}}</td>
<td>{{Type}}</td>
<td>{{Documentation}}</td>
</tr>
{{/Parameters}}
</tbody>
</table>
{{/HasParameters}}
{{^HasParameters}}
This {{LowerTypeName}} has no parameters.
{{/HasParameters}}
<h5>Return type</h5>
<p>{{ReturnType}}</p>
<div class="back-to-top"><a href="#top">Back to top</a></div>