diff --git a/scripts/docs/templates/common.template.html b/scripts/docs/templates/common.template.html index a26b232841..514806a5f6 100644 --- a/scripts/docs/templates/common.template.html +++ b/scripts/docs/templates/common.template.html @@ -187,6 +187,17 @@ defined in <$ githubViewLink(doc) $> Attribute + + <@ set hasTypes = false @> + <@ for prop in doc.properties @> + <@ if prop.type @> + <@ set hasTypes = true @> + <@ endif @> + <@ endfor @> + <@ if hasTypes @> + Type + <@ endif @> + Description @@ -194,8 +205,17 @@ defined in <$ githubViewLink(doc) $> <@ for prop in doc.properties @> + <@ if doc.name != 'Icon' @> + <@ endif @> <$ prop.name $> + + <@ if hasTypes @> + + <$ prop.type.name $> + + <@ endif @> + <$ prop.description $>