aboutsummaryrefslogtreecommitdiff
path: root/stardoc/templates/markdown_tables/provider.vm
diff options
context:
space:
mode:
Diffstat (limited to 'stardoc/templates/markdown_tables/provider.vm')
-rw-r--r--stardoc/templates/markdown_tables/provider.vm20
1 files changed, 20 insertions, 0 deletions
diff --git a/stardoc/templates/markdown_tables/provider.vm b/stardoc/templates/markdown_tables/provider.vm
new file mode 100644
index 0000000..4dad9ab
--- /dev/null
+++ b/stardoc/templates/markdown_tables/provider.vm
@@ -0,0 +1,20 @@
+<a name="#${providerName}"></a>
+
+#[[##]]# ${providerName}
+
+<pre>
+${util.providerSummary($providerName, $providerInfo)}
+</pre>
+
+${providerInfo.docString}
+
+**FIELDS**
+
+#if (!$providerInfo.fieldInfoList.isEmpty())
+
+| Name | Description |
+| :-------------: | :-------------: |
+#foreach ($field in $providerInfo.fieldInfoList)
+| $field.name | #if(!$field.docString.isEmpty()) ${util.markdownCellFormat($field.docString)} #else - #end |
+#end
+#end