diff --git a/src/lib/output/helpers/if-cond.ts b/src/lib/output/helpers/if-cond.ts index d0974f72c..94a33c589 100644 --- a/src/lib/output/helpers/if-cond.ts +++ b/src/lib/output/helpers/if-cond.ts @@ -20,6 +20,10 @@ export function ifCond( return v1 == v2 ? options.fn(this) : options.inverse(this); case "===": return v1 === v2 ? options.fn(this) : options.inverse(this); + case "!=": + return v1 != v2 ? options.fn(this) : options.inverse(this); + case "!==": + return v1 !== v2 ? options.fn(this) : options.inverse(this); case "<": return v1 < v2 ? options.fn(this) : options.inverse(this); case "<=": diff --git a/src/test/renderer/specs/index.html b/src/test/renderer/specs/index.html index cf9c5b15e..1f74026e4 100644 --- a/src/test/renderer/specs/index.html +++ b/src/test/renderer/specs/index.html @@ -68,7 +68,8 @@
Example install
-$ npm install examples --save-dev
+ $ npm install examples --save-dev
+
Example executable: examples
.
Example usage.
-$ examples --out path/to/documentation/ path/to/example/project/
+ $ examples --out path/to/documentation/ path/to/example/project/
+