mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 21:00:40 -07:00
fix: `Nil`(null, undefined) now renders as empty string change: `parser.parseValue()` renamed to `parser.parseOutput` change: registered tags/filters become static and shared across different liquid instances
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
enum BlockMode {
|
|
/* store rendered html into blocks */
|
|
OUTPUT,
|
|
/* output rendered html directly */
|
|
STORE
|
|
}
|
|
|
|
export default BlockMode
|