@{$ decorator.name $}{$ params.paramList(decorator.arguments) | indent(10, false) $}
diff --git a/aio/tools/transforms/templates/includes/_class-overview.html b/aio/tools/transforms/templates/includes/_class-overview.html index 3aa26f7c23..f2a43a948f 100644 --- a/aio/tools/transforms/templates/includes/_class-overview.html +++ b/aio/tools/transforms/templates/includes/_class-overview.html @@ -1,40 +1,44 @@ -- Class Overview
-++ ++Class Overview
++-class {$ doc.name $} {
+class {$ doc.name $} {
- {% if doc.statics.length %} -- {% for member in doc.statics %}{% if not member.internal %} -- {% endif %} + {% if doc.statics.length %} +- {% endif %}{% endfor %} -static - {$ member.name | indent(6, false) | trim $} - {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} -
+ {% for member in doc.statics %}{% if not member.internal %} ++ {% endif %} - {% if doc.constructorDoc.name %} -+ {% endif %}{% endfor %} +static + {$ member.name | indent(6, false) | trim $} + {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} +
-- {% endif %} - - {% if doc.members.length %} --- {$ doc.constructorDoc.name $} - {$ params.paramList(doc.constructorDoc.parameters) | indent(8, false) | trim $} -
- {% for member in doc.members %}{% if not member.internal %} + {% if doc.constructorDoc.name %} +\ No newline at end of file diff --git a/aio/tools/transforms/templates/includes/_constructor.html b/aio/tools/transforms/templates/includes/_constructor.html index b0b57209dd..1f9b08bc0f 100644 --- a/aio/tools/transforms/templates/includes/_constructor.html +++ b/aio/tools/transforms/templates/includes/_constructor.html @@ -1,7 +1,9 @@ {%- if doc.constructorDoc and not doc.constructorDoc.internal %} -+ {% endif %} -- {% endif %}{% endfor %} - {% endif %} +- {$ member.name | indent(6, false) | trim $} - {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} + {$ doc.constructorDoc.name $} + {$ params.paramList(doc.constructorDoc.parameters) | indent(8, false) | trim $}
}
+ {% if doc.members.length %} ++ {% for member in doc.members %}{% if not member.internal %} ++ {% endif %}{% endfor %} + {% endif %} + ++ {$ member.name | indent(6, false) | trim $} + {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} +
}
+- Constructor
-++ ++Constructor
+diff --git a/aio/tools/transforms/templates/includes/_description.html b/aio/tools/transforms/templates/includes/_description.html index 627b93df2c..c67bdad1e0 100644 --- a/aio/tools/transforms/templates/includes/_description.html +++ b/aio/tools/transforms/templates/includes/_description.html @@ -1,9 +1,10 @@ -
- - Description - link -
++ diff --git a/aio/tools/transforms/templates/includes/_export-as.html b/aio/tools/transforms/templates/includes/_export-as.html index de0796f098..702b1bae1b 100644 --- a/aio/tools/transforms/templates/includes/_export-as.html +++ b/aio/tools/transforms/templates/includes/_export-as.html @@ -1,7 +1,9 @@ {%- if doc.directiveOptions.exportAs %} -++Descriptionlink
+{%- if doc.description.length > 2 %} {$ doc.description | trimBlankLines | marked $} {% endif %} +- Exported as
-++ ++Exported as
+diff --git a/aio/tools/transforms/templates/includes/_how-to-use.html b/aio/tools/transforms/templates/includes/_how-to-use.html index b244ce60e1..45bea41235 100644 --- a/aio/tools/transforms/templates/includes/_how-to-use.html +++ b/aio/tools/transforms/templates/includes/_how-to-use.html @@ -1,8 +1,10 @@ {%- if doc.howToUse %} -
{$ doc.directiveOptions.exportAs $}
- How To Use
-+\ No newline at end of file diff --git a/aio/tools/transforms/templates/includes/_inputs.html b/aio/tools/transforms/templates/includes/_inputs.html index d923f34f92..23bcfda2e3 100644 --- a/aio/tools/transforms/templates/includes/_inputs.html +++ b/aio/tools/transforms/templates/includes/_inputs.html @@ -1,7 +1,9 @@ {% if doc.inputs %} -+ diff --git a/aio/tools/transforms/templates/includes/_info-bar.html b/aio/tools/transforms/templates/includes/_info-bar.html index 522773a183..46f996020f 100644 --- a/aio/tools/transforms/templates/includes/_info-bar.html +++ b/aio/tools/transforms/templates/includes/_info-bar.html @@ -13,6 +13,4 @@ - - create++How To Use
+{$ doc.howToUse | marked $}- Inputs
-++ ++Inputs
+{% for binding, property in doc.inputs %}{$ property.bindingName $}
bound to{$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}
diff --git a/aio/tools/transforms/templates/includes/_members.html b/aio/tools/transforms/templates/includes/_members.html index 1c0bb8b988..3dda7e36e9 100644 --- a/aio/tools/transforms/templates/includes/_members.html +++ b/aio/tools/transforms/templates/includes/_members.html @@ -1,7 +1,9 @@ {% if doc.members.length %} -- Class Details
-++ ++Class Details
+{% for member in doc.members %}{% if not member.internal %}diff --git a/aio/tools/transforms/templates/includes/_selectors.html b/aio/tools/transforms/templates/includes/_selectors.html index fbdab157a6..4b8ce6ee90 100644 --- a/aio/tools/transforms/templates/includes/_selectors.html +++ b/aio/tools/transforms/templates/includes/_selectors.html @@ -1,7 +1,9 @@ {%- if doc.directiveOptions.selector.split(',').length %} -- Selectors
-++ ++Selectors
+{% for selector in doc.directiveOptions.selector.split(',') %}
{$ selector $}
diff --git a/aio/tools/transforms/templates/includes/_statics.html b/aio/tools/transforms/templates/includes/_statics.html index d8ded2cec7..e3f0cfd626 100644 --- a/aio/tools/transforms/templates/includes/_statics.html +++ b/aio/tools/transforms/templates/includes/_statics.html @@ -1,7 +1,9 @@ {% if doc.statics.length %} -- Static Members
-++ ++Static Members
+{% for member in doc.statics %}{% if not member.internal %}diff --git a/aio/tools/transforms/templates/includes/_title.html b/aio/tools/transforms/templates/includes/_title.html index 0057c04114..cc5d051005 100644 --- a/aio/tools/transforms/templates/includes/_title.html +++ b/aio/tools/transforms/templates/includes/_title.html @@ -1,5 +1,5 @@ -+ {$ doc.name $}
{$ doc.docType $}
{$ angular.version $}