fix ngModule tag, api-list and json encoding
This commit is contained in:
parent
d64cb11635
commit
7ed5d08af2
|
@ -1,6 +1,5 @@
|
||||||
module.exports = function() {
|
module.exports = function() {
|
||||||
return {
|
return {
|
||||||
name: 'ngModule',
|
name: 'ngModule'
|
||||||
multi: true
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
"docType": "{$ item.docType $}",
|
"docType": "{$ item.docType $}",
|
||||||
"stability": "{$ item.stability $}",
|
"stability": "{$ item.stability $}",
|
||||||
"secure": "{$ item.security $}",
|
"secure": "{$ item.security $}",
|
||||||
"howToUse": "{$ item.howToUse | replace('"','\\"') $}",
|
|
||||||
"whatItDoes": {% if item.whatItDoes %}"Exists"{% else %}"Not Done"{% endif %},
|
|
||||||
"barrel" : "{$ module | replace("/index", "") $}"
|
"barrel" : "{$ module | replace("/index", "") $}"
|
||||||
}{% if not loop.last %},{% endif %}
|
}{% if not loop.last %},{% endif %}
|
||||||
{% endfor %}]{% if not loop.last %},{% endif %}
|
{% endfor %}]{% if not loop.last %},{% endif %}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
|
||||||
|
div(flex="20" flex-xs="100")
|
||||||
|
h2(class="h2-api-docs") NgModule
|
||||||
|
div(class="code-links" flex="80" flex-xs="100").
|
||||||
|
{$ doc.ngModule $}
|
|
@ -13,6 +13,8 @@ include {$ relativePath(doc.path, '_util-fns') $}
|
||||||
|
|
||||||
{% include "layout/_how-to-use.html" %}
|
{% include "layout/_how-to-use.html" %}
|
||||||
|
|
||||||
|
{% include "layout/_ng-module.html" %}
|
||||||
|
|
||||||
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
|
div(layout="row" layout-xs="column" class="row-margin ng-cloak")
|
||||||
div(flex="20" flex-xs="100")
|
div(flex="20" flex-xs="100")
|
||||||
h2(class="h2-api-docs") Description
|
h2(class="h2-api-docs") Description
|
||||||
|
|
Loading…
Reference in New Issue