dgeni-packages
Advanced tools
Changelog
0.16.2 16 December 2016
This fix removes the q and q-io dependencies, since q-io was causing Array.find to be shimmed incorrectly.
Changelog
0.16.1 13 December 2016
Changelog
v0.16.0 13 September 2016
Previously, if there were multiple declarations for an exported symbol, then the docs for those declarations were simply joined together with newlines.
Now only the first declaration (or the valueDeclaration if there is one) is used in an export doc.
If you needed the content for the other declarations then you can still
access them via a call like getContent(doc.additionalDeclarations[i])
.
Changelog
v0.15.2 9 September 2016
Changelog
v0.15.1 6 September 2016
git+https:
c27a324dimport
syntax for macros 9a69a096The update to nunjucks
2.4.2 has changed how macros are used. Now you must import them rather than
just including them in a template. See http://mozilla.github.io/nunjucks/templating.html#import for
more detail on the syntax.
Before:
{% include "lib/macros.html" -%}
{$ functionSyntax(doc) $}
Now:
{% import "lib/macros.html" as lib -%}
{$ lib.functionSyntax(doc) $}
The templates provided by this project (in particular those in the ngdocs
package) have been updated
but if your project uses macros in its own templates then these will need updating too.
Changelog
v0.14.0 4 July 2016
Major update of dependencies to latest.
The nunjucks
package rendering filter sentenceCase
now capitalizes
the first letter of the sentence. If you relied on the previous behaviour
then you should use the noCase
filter instead.