liquidjs
Version:
A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.
25 lines (24 loc) • 1.09 kB
TypeScript
import AssignTag from './assign';
import ForTag from './for';
import CaptureTag from './capture';
import CaseTag from './case';
import CommentTag from './comment';
import IncludeTag from './include';
import RenderTag from './render';
import DecrementTag from './decrement';
import CycleTag from './cycle';
import IfTag from './if';
import IncrementTag from './increment';
import LayoutTag from './layout';
import BlockTag from './block';
import RawTag from './raw';
import TablerowTag from './tablerow';
import UnlessTag from './unless';
import BreakTag from './break';
import ContinueTag from './continue';
import EchoTag from './echo';
import LiquidTag from './liquid';
import InlineCommentTag from './inline-comment';
import type { TagClass } from '../template/tag';
export declare const tags: Record<string, TagClass>;
export { AssignTag, ForTag, CaptureTag, CaseTag, CommentTag, IncludeTag, RenderTag, DecrementTag, IncrementTag, CycleTag, IfTag, LayoutTag, BlockTag, RawTag, TablerowTag, UnlessTag, BreakTag, ContinueTag, EchoTag, LiquidTag, InlineCommentTag };