aboutsummaryrefslogtreecommitdiff
path: root/stardoc/templates/markdown_tables/module_extension.vm
blob: 0ef736777c19569b38dd31bb56cb296cda227625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<a id="${extensionName}"></a>

#[[##]]# ${extensionName}

<pre>
${util.moduleExtensionSummary($extensionName, $extensionInfo)}
</pre>
#if (!$extensionInfo.docString.isEmpty())

${extensionInfo.docString}
#end

#if (!$extensionInfo.getTagClassList().isEmpty())

**TAG CLASSES**
#foreach ($tagClass in $extensionInfo.getTagClassList())

<a id="${extensionName}.${tagClass.tagName}"></a>

#[[###]]# ${tagClass.tagName}
#if (!$tagClass.docString.isEmpty())

${tagClass.docString}
#end

**Attributes**

| Name  | Description | Type | Mandatory | Default |
| :------------- | :------------- | :------------- | :------------- | :------------- |
#foreach ($attribute in $tagClass.getAttributeList())
| <a id="${extensionName}.${tagClass.tagName}-${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
#end