diff --git a/settings/helpTemplates/generic.template.html b/settings/helpTemplates/generic.template.html
index 0c938c343..e62b7c6fb 100644
--- a/settings/helpTemplates/generic.template.html
+++ b/settings/helpTemplates/generic.template.html
@@ -20,16 +20,21 @@
<#macro argumentDetails arg>
${arg.name}<#if arg.synonyms??> / ${arg.synonyms}#if>
(<#if arg.attributes??>${arg.attributes} #if>${arg.type}<#if arg.defaultValue??> with default value ${arg.defaultValue}#if>)
- ${arg.summary}. ${arg.fulltext}
+
+ ${arg.summary}. ${arg.fulltext}
+ <#if arg.rodTypes??>${arg.name} binds reference ordered data. This argument supports ROD files of the
+ following types: ${arg.rodTypes}#if>
<#if arg.options??>
-
The ${arg.name} argument is an enumerated type (${arg.type}), which can have one of the following values:
+
+ The ${arg.name} argument is an enumerated type (${arg.type}), which can have one of the following values:
<#list arg.options as option>
- - ${option.name}
-
- ${option.summary}
+
- ${option.name}
+ - ${option.summary}
#list>
#if>
+
#macro>
<#macro relatedByType name type>
diff --git a/settings/helpTemplates/style.css b/settings/helpTemplates/style.css
index 2abcf0397..375df2f51 100644
--- a/settings/helpTemplates/style.css
+++ b/settings/helpTemplates/style.css
@@ -42,6 +42,10 @@ p.version
text-align: center;
}
+p.args
+{
+ margin-left: 3em;
+}
h1, h2, h3, h4
{
@@ -81,17 +85,17 @@ hr
* enum DT layout
*/
-dl {
- border: 1px solid #ccc;
+dl.enum {
+ margin-left: 3em;
+ border: 1px dashed #ccc;
}
-dt {
+dt.enum {
font-weight: bold;
text-decoration: underline;
}
-dd {
- margin: 0;
+dd.enum {
padding: 0 0 0.5em 0;
}