fix: allow {%render%} to reassign argument, #404

This commit is contained in:
AleksandrHovhannisyan
2021-10-31 16:28:33 +08:00
committed by Harttle
parent 432d1c7ccb
commit 124f4c4485
9 changed files with 44 additions and 6 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ export interface LiquidOptions {
greedy?: boolean;
/** `fs` is used to override the default file-system module with a custom implementation. */
fs?: FS;
/** the global environment passed down to all partial templates, i.e. templates included by `include`, `layout` and `render` tags. */
/** the global scope passed down to all partial and layout templates, i.e. templates included by `include`, `layout` and `render` tags. */
globals?: object;
/** Whether or not to keep value type when writing the Output, not working for streamed rendering. Defaults to `false`. */
keepOutputType?: boolean;