blob: ed4a2a9ac9dcbeaf3e04381a850a5686ff6540f1 [file] [log] [blame]
<a id="${ruleName}"></a>
#[[##]]# ${ruleName}
<pre>
${util.repositoryRuleSummary($ruleName, $ruleInfo)}
</pre>
#if (!$ruleInfo.docString.isEmpty())
${ruleInfo.docString}
#end
**ATTRIBUTES**
#if (!$ruleInfo.getAttributeList().isEmpty())
| Name | Description | Type | Mandatory | Default |
| :------------- | :------------- | :------------- | :------------- | :------------- |
#foreach ($attribute in $ruleInfo.getAttributeList())
| <a id="${ruleName}-${attribute.name}"></a>$attribute.name | #if(!$attribute.docString.isEmpty()) ${util.markdownCellFormat($attribute.docString)} #else - #end | ${util.attributeTypeString($attribute)} | ${util.mandatoryString($attribute)} | #if(!$attribute.defaultValue.isEmpty()) ${util.markdownCodeSpan($attribute.defaultValue)} #end |
#end
#end
#if (!$ruleInfo.getEnvironList().isEmpty())
**ENVIRONMENT VARIABLES**
This repository rule depends on the following environment variables:
#foreach ($var in $ruleInfo.getEnvironList())
* ${util.markdownCodeSpan($var)}
#end
#end