Conformance Examples 0.1.0 — Render: interpolation-matrix¶
matrix-string-escaped¶
String value, escaped interpolation: renders unquoted, as-is (no HTML-special characters here; see html-escaping.json for escaping behavior).
Template
Context
Output
matrix-string-unescaped¶
String value, unescaped interpolation: renders unquoted, as-is.
Template
Context
Output
matrix-integer-escaped¶
Integer value, escaped interpolation: renders as plain decimal digits.
Template
Context
Output
matrix-integer-unescaped¶
Integer value, unescaped interpolation: renders as plain decimal digits.
Template
Context
Output
matrix-decimal-escaped¶
Decimal (whole-valued double) value, escaped interpolation: renders per ECMA-262 Number::toString ("1", not "1.0").
Template
Context
Output
matrix-decimal-unescaped¶
Decimal (whole-valued double) value, unescaped interpolation: renders per ECMA-262 Number::toString.
Template
Context
Output
matrix-boolean-escaped¶
Boolean value, escaped interpolation: renders as the literal token "true"/"false".
Template
Context
Output
matrix-boolean-unescaped¶
Boolean value, unescaped interpolation: renders as the literal token "true"/"false".
Template
Context
Output
matrix-null-escaped¶
Explicit JSON null value, escaped interpolation: renders the literal token "null" (kBars diverges from Mustache here, which renders empty).
Template
Context
Output
matrix-null-unescaped¶
Explicit JSON null value, unescaped interpolation: also renders the literal token "null".
Template
Context
Output
Source fixture: render/interpolation-matrix.json