├── .github └── workflows │ └── build-test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .travis.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── __benchmarks__ ├── benchmark.engine.ts ├── benchmark.parser.ts ├── index.ts ├── typings.d.ts └── util.ts ├── __tests__ ├── api.test.ts ├── assembler.test.ts ├── cldr.ts ├── compiler.test.ts ├── context.test.ts ├── engine.test.ts ├── enum.test.ts ├── errors.test.ts ├── eval.test.ts ├── executor.test.ts ├── helpers.ts ├── include.test.ts ├── loader.ts ├── matcher.test.ts ├── math.test.ts ├── mathext.test.ts ├── node.test.ts ├── parser.test.ts ├── patterns.test.ts ├── plugins │ ├── enums.test.ts │ ├── formatters.commerce.test.ts │ ├── formatters.content.test.ts │ ├── formatters.core.test.ts │ ├── formatters.date.test.ts │ ├── formatters.i18n.test.ts │ ├── formatters.missing.test.ts │ ├── formatters.social.test.ts │ ├── messages.test.ts │ ├── options.test.ts │ ├── predicates.commerce.test.ts │ ├── predicates.content.test.ts │ ├── predicates.core.test.ts │ ├── predicates.missing.test.ts │ ├── predicates.slide.test.ts │ ├── predicates.social.test.ts │ ├── resources │ │ ├── f-absurl-1.html │ │ ├── f-activate-twitter-links-1.html │ │ ├── f-add-to-cart-btn-1.html │ │ ├── f-add-to-cart-btn-10.html │ │ ├── f-add-to-cart-btn-2.html │ │ ├── f-add-to-cart-btn-3.html │ │ ├── f-add-to-cart-btn-4.html │ │ ├── f-add-to-cart-btn-5.html │ │ ├── f-add-to-cart-btn-6.html │ │ ├── f-add-to-cart-btn-7.html │ │ ├── f-add-to-cart-btn-8.html │ │ ├── f-add-to-cart-btn-9.html │ │ ├── f-add-to-cart-btn-subscribable-attribute-false.html │ │ ├── f-add-to-cart-btn-subscribable-attribute-true.html │ │ ├── f-apply-1.html │ │ ├── f-audio-player-1.html │ │ ├── f-bookkeeper-money-format-1.html │ │ ├── f-bookkeeper-money-format-2.html │ │ ├── f-bookkeeper-money-format-3.html │ │ ├── f-capitalize-1.html │ │ ├── f-cart-quantity-1.html │ │ ├── f-cart-quantity-2.html │ │ ├── f-cart-subtotal-1.html │ │ ├── f-cart-url-1.html │ │ ├── f-child-image-meta-1.html │ │ ├── f-child-image-meta-2.html │ │ ├── f-child-image-meta-3.html │ │ ├── f-child-image-meta-4.html │ │ ├── f-child-image-meta-5.html │ │ ├── f-child-image-meta-6.html │ │ ├── f-color-weight-1.html │ │ ├── f-comment-count-1.html │ │ ├── f-comment-count-2.html │ │ ├── f-comment-count-3.html │ │ ├── f-comment-link-1.html │ │ ├── f-comment-link-2.html │ │ ├── f-comment-link-3.html │ │ ├── f-comments-1.html │ │ ├── f-comments-2.html │ │ ├── f-comments-3.html │ │ ├── f-count-1.html │ │ ├── f-cover-image-meta-1.html │ │ ├── f-cycle-1.html │ │ ├── f-date-1.html │ │ ├── f-date-2.html │ │ ├── f-date-3.html │ │ ├── f-datetime-1.html │ │ ├── f-datetime-2.html │ │ ├── f-datetime-interval-1.html │ │ ├── f-decimal-1.html │ │ ├── f-encode-space-1.html │ │ ├── f-encode-uri-1.html │ │ ├── f-encode-uri-component-1.html │ │ ├── f-format-1.html │ │ ├── f-format-2.html │ │ ├── f-format-3.html │ │ ├── f-from-price-1.html │ │ ├── f-from-price-2.html │ │ ├── f-from-price-3.html │ │ ├── f-from-price-4.html │ │ ├── f-from-price-5.html │ │ ├── f-from-price-6.html │ │ ├── f-from-price-7.html │ │ ├── f-get-1.html │ │ ├── f-get-2.html │ │ ├── f-get-3.html │ │ ├── f-get-4.html │ │ ├── f-get-5.html │ │ ├── f-get-6.html │ │ ├── f-get-7.html │ │ ├── f-google-calendar-url-1.html │ │ ├── f-google-calendar-url-2.html │ │ ├── f-google-calendar-url-3.html │ │ ├── f-height-1.html │ │ ├── f-html-1.html │ │ ├── f-htmlattr-1.html │ │ ├── f-htmltag-1.html │ │ ├── f-humanize-duration-1.html │ │ ├── f-image-1.html │ │ ├── f-image-2.html │ │ ├── f-image-3.html │ │ ├── f-image-4.html │ │ ├── f-image-5.html │ │ ├── f-image-6.html │ │ ├── f-image-7.html │ │ ├── f-image-color-1.html │ │ ├── f-image-color-2.html │ │ ├── f-image-color-3.html │ │ ├── f-image-color-4.html │ │ ├── f-image-color-5.html │ │ ├── f-image-meta-1.html │ │ ├── f-image-meta-2.html │ │ ├── f-image-srcset-1.html │ │ ├── f-image-srcset-2.html │ │ ├── f-image-srcset-3.html │ │ ├── f-image-srcset-4.html │ │ ├── f-image-srcset-5.html │ │ ├── f-item-classes-1.html │ │ ├── f-item-classes-2.html │ │ ├── f-item-classes-3.html │ │ ├── f-iter-1.html │ │ ├── f-json-1.html │ │ ├── f-json-2.html │ │ ├── f-json-3.html │ │ ├── f-json-4.html │ │ ├── f-json-5.html │ │ ├── f-json-pretty-1.html │ │ ├── f-json-pretty-2.html │ │ ├── f-key-by-1.html │ │ ├── f-like-button-1.html │ │ ├── f-like-button-2.html │ │ ├── f-lookup-1.html │ │ ├── f-macro-1.html │ │ ├── f-macro-10.html │ │ ├── f-macro-11.html │ │ ├── f-macro-12.html │ │ ├── f-macro-2.html │ │ ├── f-macro-3.html │ │ ├── f-macro-4.html │ │ ├── f-macro-5.html │ │ ├── f-macro-6.html │ │ ├── f-macro-7.html │ │ ├── f-macro-8.html │ │ ├── f-macro-9.html │ │ ├── f-macro-ctx-1.html │ │ ├── f-message-1.html │ │ ├── f-message-2.html │ │ ├── f-message-3.html │ │ ├── f-message-4.html │ │ ├── f-message-5.html │ │ ├── f-message-6.html │ │ ├── f-message-7.html │ │ ├── f-message-plural-1.html │ │ ├── f-message-plural-2.html │ │ ├── f-missing-1.html │ │ ├── f-mod-1.html │ │ ├── f-money-1.html │ │ ├── f-money-format-1.html │ │ ├── f-money-format-2.html │ │ ├── f-money-format-camel-1.html │ │ ├── f-money-string-1.html │ │ ├── f-normal-price-1.html │ │ ├── f-normal-price-2.html │ │ ├── f-normal-price-3.html │ │ ├── f-normal-price-4.html │ │ ├── f-normal-price-5.html │ │ ├── f-normal-price-6.html │ │ ├── f-normal-price-7.html │ │ ├── f-output-1.html │ │ ├── f-percentage-format-1.html │ │ ├── f-percentage-format-2.html │ │ ├── f-percentage-format-3.html │ │ ├── f-plural-1.html │ │ ├── f-pluralize-1.html │ │ ├── f-product-checkout-1.html │ │ ├── f-product-price-1.html │ │ ├── f-product-price-10.html │ │ ├── f-product-price-2.html │ │ ├── f-product-price-3.html │ │ ├── f-product-price-4.html │ │ ├── f-product-price-5.html │ │ ├── f-product-price-6.html │ │ ├── f-product-price-7.html │ │ ├── f-product-price-8.html │ │ ├── f-product-price-9.html │ │ ├── f-product-price-finite-subscription-bi-monthly.html │ │ ├── f-product-price-finite-subscription-bi-weekly-for-a-year.html │ │ ├── f-product-price-finite-subscription-bi-weekly.html │ │ ├── f-product-price-finite-subscription-from-bi-monthly.html │ │ ├── f-product-price-finite-subscription-from-bi-weekly.html │ │ ├── f-product-price-finite-subscription-from-monthly.html │ │ ├── f-product-price-finite-subscription-from-weekly-on-sale.html │ │ ├── f-product-price-finite-subscription-from-weekly.html │ │ ├── f-product-price-finite-subscription-monthly-for-a-year.html │ │ ├── f-product-price-finite-subscription-monthly.html │ │ ├── f-product-price-finite-subscription-on-sale-bi-monthly.html │ │ ├── f-product-price-finite-subscription-on-sale-bi-weekly.html │ │ ├── f-product-price-finite-subscription-on-sale-monthly.html │ │ ├── f-product-price-finite-subscription-on-sale-weekly.html │ │ ├── f-product-price-finite-subscription-weekly-localized-multiple.html │ │ ├── f-product-price-finite-subscription-weekly-localized.html │ │ ├── f-product-price-finite-subscription-weekly.html │ │ ├── f-product-price-subscription-bi-monthly.html │ │ ├── f-product-price-subscription-bi-weekly.html │ │ ├── f-product-price-subscription-from-bi-monthly.html │ │ ├── f-product-price-subscription-from-bi-weekly.html │ │ ├── f-product-price-subscription-from-monthly.html │ │ ├── f-product-price-subscription-from-weekly-on-sale.html │ │ ├── f-product-price-subscription-from-weekly.html │ │ ├── f-product-price-subscription-monthly.html │ │ ├── f-product-price-subscription-on-sale-bi-monthly.html │ │ ├── f-product-price-subscription-on-sale-bi-weekly.html │ │ ├── f-product-price-subscription-on-sale-monthly.html │ │ ├── f-product-price-subscription-on-sale-weekly.html │ │ ├── f-product-price-subscription-weekly-localized-multiple.html │ │ ├── f-product-price-subscription-weekly-localized.html │ │ ├── f-product-price-subscription-weekly-plan-unavailable.html │ │ ├── f-product-price-subscription-weekly.html │ │ ├── f-product-quick-view-1.html │ │ ├── f-product-quick-view-2.html │ │ ├── f-product-quick-view-3.html │ │ ├── f-product-quick-view-4.html │ │ ├── f-product-quick-view-5.html │ │ ├── f-product-restock-notification-1.html │ │ ├── f-product-restock-notification-2.html │ │ ├── f-product-restock-notification-3.html │ │ ├── f-product-restock-notification-4.html │ │ ├── f-product-restock-notification-5.html │ │ ├── f-product-restock-notification-6.html │ │ ├── f-product-scarcity-1.html │ │ ├── f-product-scarcity-2.html │ │ ├── f-product-scarcity-3.html │ │ ├── f-product-scarcity-4.html │ │ ├── f-product-scarcity-5.html │ │ ├── f-product-scarcity-6.html │ │ ├── f-product-status-1.html │ │ ├── f-product-status-2.html │ │ ├── f-product-status-3.html │ │ ├── f-product-status-4.html │ │ ├── f-product-status-5.html │ │ ├── f-product-status-6.html │ │ ├── f-product-status-7.html │ │ ├── f-product-status-8.html │ │ ├── f-product-status-9.html │ │ ├── f-prop-1.html │ │ ├── f-prop-2.html │ │ ├── f-prop-3.html │ │ ├── f-quantity-input-1.html │ │ ├── f-quantity-input-2.html │ │ ├── f-quantity-input-3.html │ │ ├── f-quantity-input-4.html │ │ ├── f-quantity-input-5.html │ │ ├── f-raw-1.html │ │ ├── f-relative-time-1.html │ │ ├── f-resized-1.html │ │ ├── f-round-1.html │ │ ├── f-safe-1.html │ │ ├── f-sale-price-1.html │ │ ├── f-sale-price-2.html │ │ ├── f-sale-price-3.html │ │ ├── f-sale-price-4.html │ │ ├── f-sale-price-5.html │ │ ├── f-sale-price-6.html │ │ ├── f-sale-price-7.html │ │ ├── f-slugify-1.html │ │ ├── f-smartypants-1.html │ │ ├── f-social-button-1.html │ │ ├── f-social-button-inline-1.html │ │ ├── f-str-1.html │ │ ├── f-subscription-price-multiple-variants-and-multiple-pricing-options.html │ │ ├── f-subscription-price-multiple-variants-from-price.html │ │ ├── f-subscription-price-no-pricing-options.html │ │ ├── f-subscription-price-on-sale-variants-pricing-options.html │ │ ├── f-subscription-price-one-on-sale-pricing-option.html │ │ ├── f-subscription-price-one-pricing-option.html │ │ ├── f-subscription-price-variants-with-same-pricing.html │ │ ├── f-summary-form-field-address-1.html │ │ ├── f-summary-form-field-address-2.html │ │ ├── f-summary-form-field-checkbox-1.html │ │ ├── f-summary-form-field-checkbox-2.html │ │ ├── f-summary-form-field-checkbox-3.html │ │ ├── f-summary-form-field-date-1.html │ │ ├── f-summary-form-field-default-1.html │ │ ├── f-summary-form-field-likert-1.html │ │ ├── f-summary-form-field-name-1.html │ │ ├── f-summary-form-field-phone-1.html │ │ ├── f-summary-form-field-phone-2.html │ │ ├── f-summary-form-field-time-1.html │ │ ├── f-summary-form-field-time-2.html │ │ ├── f-summary-form-field-time-3.html │ │ ├── f-summary-form-field-unk-1.html │ │ ├── f-timesince-1.html │ │ ├── f-truncate-1.html │ │ ├── f-twitter-follow-button-1.html │ │ ├── f-twitter-follow-button-2.html │ │ ├── f-url-encode-1.html │ │ ├── f-variant-descriptor-1.html │ │ ├── f-variant-descriptor-2.html │ │ ├── f-variants-select-1.html │ │ ├── f-variants-select-2.html │ │ ├── f-variants-select-3.html │ │ ├── f-variants-select-4.html │ │ ├── f-variants-select-5.html │ │ ├── f-variants-select-6.html │ │ ├── f-variants-select-7.html │ │ ├── f-variants-select-subscription.html │ │ ├── f-video-1.html │ │ ├── f-video-2.html │ │ ├── f-video-3.html │ │ ├── f-website-color-1.html │ │ ├── f-website-color-2.html │ │ ├── f-website-color-3.html │ │ ├── f-website-color-4.html │ │ ├── f-website-color-5.html │ │ ├── f-width-1.html │ │ ├── get-item-variant-options.json │ │ ├── get-total-stock-remaining.json │ │ ├── has-variants.json │ │ ├── has-varied-prices.json │ │ ├── i18n │ │ │ ├── f-datetime-interval-1.html │ │ │ ├── f-decimal-1.html │ │ │ ├── f-decimal-2.html │ │ │ ├── f-foo.html │ │ │ ├── f-message-datetime-interval-en-US.html │ │ │ ├── f-message-datetime-interval-fr-FR.html │ │ │ ├── f-message-named-args.html │ │ │ ├── f-message-plural-en-US.html │ │ │ ├── f-message-plural-fr-FR.html │ │ │ ├── f-message-plural-pl-PL.html │ │ │ ├── f-message-units-en-US.html │ │ │ ├── f-message-units-fr-FR.html │ │ │ ├── f-unit-angle-en-US.html │ │ │ ├── f-unit-area-en-US.html │ │ │ ├── f-unit-digital-en-US.html │ │ │ ├── f-unit-duration-en-US.html │ │ │ ├── f-unit-frequency-en-US.html │ │ │ ├── f-unit-length-en-US.html │ │ │ ├── f-unit-temperature-en-US.html │ │ │ ├── i18n-money-format-AUD-de_DE.html │ │ │ ├── i18n-money-format-AUD-en_UK.html │ │ │ ├── i18n-money-format-AUD-en_US.html │ │ │ ├── i18n-money-format-AUD-es_US.html │ │ │ ├── i18n-money-format-AUD-fr_FR.html │ │ │ ├── i18n-money-format-AUD-sv_SE.html │ │ │ ├── i18n-money-format-CAD-de_DE.html │ │ │ ├── i18n-money-format-CAD-en_UK.html │ │ │ ├── i18n-money-format-CAD-en_US.html │ │ │ ├── i18n-money-format-CAD-es_US.html │ │ │ ├── i18n-money-format-CAD-fr_FR.html │ │ │ ├── i18n-money-format-CAD-sv_SE.html │ │ │ ├── i18n-money-format-EUR-de_DE.html │ │ │ ├── i18n-money-format-EUR-en_UK.html │ │ │ ├── i18n-money-format-EUR-en_US.html │ │ │ ├── i18n-money-format-EUR-es_US.html │ │ │ ├── i18n-money-format-EUR-fr_FR.html │ │ │ ├── i18n-money-format-EUR-sv_SE.html │ │ │ ├── i18n-money-format-GBP-de_DE.html │ │ │ ├── i18n-money-format-GBP-en_UK.html │ │ │ ├── i18n-money-format-GBP-en_US.html │ │ │ ├── i18n-money-format-GBP-es_US.html │ │ │ ├── i18n-money-format-GBP-fr_FR.html │ │ │ ├── i18n-money-format-GBP-sv_SE.html │ │ │ ├── i18n-money-format-JPY-de_DE.html │ │ │ ├── i18n-money-format-JPY-en_UK.html │ │ │ ├── i18n-money-format-JPY-en_US.html │ │ │ ├── i18n-money-format-JPY-es_US.html │ │ │ ├── i18n-money-format-JPY-fr_FR.html │ │ │ ├── i18n-money-format-JPY-sv_SE.html │ │ │ ├── i18n-money-format-SEK-de_DE.html │ │ │ ├── i18n-money-format-SEK-en_UK.html │ │ │ ├── i18n-money-format-SEK-en_US.html │ │ │ ├── i18n-money-format-SEK-es_US.html │ │ │ ├── i18n-money-format-SEK-fr_FR.html │ │ │ ├── i18n-money-format-SEK-sv_SE.html │ │ │ ├── i18n-money-format-USD-de_DE.html │ │ │ ├── i18n-money-format-USD-en_UK.html │ │ │ ├── i18n-money-format-USD-en_US.html │ │ │ ├── i18n-money-format-USD-es_US.html │ │ │ ├── i18n-money-format-USD-fr_FR.html │ │ │ ├── i18n-money-format-USD-sv_SE.html │ │ │ └── units │ │ │ │ ├── _numbers.json │ │ │ │ ├── acceleration-in.html │ │ │ │ ├── acceleration-out-en-US.html │ │ │ │ ├── acceleration-out-fr-FR.html │ │ │ │ ├── angle-in.html │ │ │ │ ├── angle-out-en-US.html │ │ │ │ ├── angle-out-fr-FR.html │ │ │ │ ├── area-in.html │ │ │ │ ├── area-out-en-US.html │ │ │ │ ├── area-out-fr-FR.html │ │ │ │ ├── consumption-in.html │ │ │ │ ├── consumption-out-en-US.html │ │ │ │ ├── consumption-out-fr-FR.html │ │ │ │ ├── digital-in.html │ │ │ │ ├── digital-out-en-US.html │ │ │ │ ├── digital-out-fr-FR.html │ │ │ │ ├── duration-in.html │ │ │ │ ├── duration-out-en-US.html │ │ │ │ ├── duration-out-fr-FR.html │ │ │ │ ├── electric-in.html │ │ │ │ ├── electric-out-en-US.html │ │ │ │ ├── electric-out-fr-FR.html │ │ │ │ ├── energy-in.html │ │ │ │ ├── energy-out-en-US.html │ │ │ │ ├── energy-out-fr-FR.html │ │ │ │ ├── frequency-in.html │ │ │ │ ├── frequency-out-en-US.html │ │ │ │ ├── frequency-out-fr-FR.html │ │ │ │ ├── length-in.html │ │ │ │ ├── length-out-en-US.html │ │ │ │ ├── length-out-fr-FR.html │ │ │ │ ├── mass-in.html │ │ │ │ ├── mass-out-en-US.html │ │ │ │ ├── mass-out-fr-FR.html │ │ │ │ ├── power-in.html │ │ │ │ ├── power-out-en-US.html │ │ │ │ ├── power-out-fr-FR.html │ │ │ │ ├── speed-in.html │ │ │ │ ├── speed-out-en-US.html │ │ │ │ ├── speed-out-fr-FR.html │ │ │ │ ├── temperature-in.html │ │ │ │ ├── temperature-out-en-US.html │ │ │ │ ├── temperature-out-fr-FR.html │ │ │ │ ├── volume-in.html │ │ │ │ ├── volume-out-en-US.html │ │ │ │ └── volume-out-fr-FR.html │ │ ├── is-multi-quantity-allowed-for-services.json │ │ ├── p-active-time-1.html │ │ ├── p-attachment-1.html │ │ ├── p-audio-1.html │ │ ├── p-background-source-1.html │ │ ├── p-binary-1.html │ │ ├── p-calendar-view-1.html │ │ ├── p-checkin-1.html │ │ ├── p-child-images-1.html │ │ ├── p-child-images-2.html │ │ ├── p-child-images-3.html │ │ ├── p-child-images-4.html │ │ ├── p-clickable-1.html │ │ ├── p-collection-1.html │ │ ├── p-collection-page-1.html │ │ ├── p-collection-template-page-1.html │ │ ├── p-collection-type-name-equals-1.html │ │ ├── p-comments-1.html │ │ ├── p-comparisons-1.html │ │ ├── p-current-type.html │ │ ├── p-debug-1.html │ │ ├── p-debug-2.html │ │ ├── p-disqus-1.html │ │ ├── p-even-odd-1.html │ │ ├── p-excerpt-1.html │ │ ├── p-external-link-1.html │ │ ├── p-external-video-1.html │ │ ├── p-folder-1.html │ │ ├── p-gallery-active-alignment-1.html │ │ ├── p-gallery-boolean-1.html │ │ ├── p-gallery-design-1.html │ │ ├── p-gallery-meta-1.html │ │ ├── p-gallery-meta-position-1.html │ │ ├── p-has-multiple-1.html │ │ ├── p-has-variants-1.html │ │ ├── p-index-1.html │ │ ├── p-location-1.html │ │ ├── p-main-image-1.html │ │ ├── p-nth-1.html │ │ ├── p-on-sale.html │ │ ├── p-passthrough-1.html │ │ ├── p-plural-1.html │ │ ├── p-promoted-1.html │ │ ├── p-record-type-1.html │ │ ├── p-redirect-1.html │ │ ├── p-same-day-1.html │ │ ├── p-service-name-email-1.html │ │ ├── p-show-past-events-1.html │ │ ├── p-singular-1.html │ │ ├── p-sold-out.html │ │ └── p-varied-prices.html │ ├── util.color.test.ts │ ├── util.commerce.test.ts │ ├── util.content.test.ts │ ├── util.format.test.ts │ ├── util.social.test.ts │ └── util.string.test.ts ├── pretty.test.ts ├── resources │ ├── ast-1.html │ ├── ast-10.html │ ├── ast-11.html │ ├── ast-12.html │ ├── ast-13.html │ ├── ast-14.html │ ├── ast-15.html │ ├── ast-16.html │ ├── ast-17.html │ ├── ast-18.html │ ├── ast-19.html │ ├── ast-2.html │ ├── ast-20.html │ ├── ast-3.html │ ├── ast-4.html │ ├── ast-5.html │ ├── ast-6.html │ ├── ast-7.html │ ├── ast-8.html │ ├── ast-9.html │ ├── bindvar-1.html │ ├── bindvar-2.html │ ├── ctxvar-1.html │ ├── eval-1.html │ ├── eval-10.html │ ├── eval-11.html │ ├── eval-12.html │ ├── eval-2.html │ ├── eval-3.html │ ├── eval-4.html │ ├── eval-5.html │ ├── eval-6.html │ ├── eval-7.html │ ├── eval-8.html │ ├── eval-9.html │ ├── include-1.html │ ├── include-2.html │ ├── inject-1.html │ ├── inject-2.html │ ├── pretty-1.txt │ ├── pretty-2.txt │ └── variables-1.html ├── rng.ts ├── scan.test.ts ├── types.test.ts └── util.test.ts ├── bin └── templatec.js ├── deprecate ├── examples └── basic-usage │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json ├── package.json ├── prerelease ├── release ├── rollup-test.html ├── rollup.config.js ├── scripts ├── dump-plugins.ts └── generate.ts ├── src ├── assembler.ts ├── builder.ts ├── calendars │ ├── calendar.ts │ ├── constants.ts │ ├── fields.ts │ ├── gregorian.ts │ ├── index.ts │ └── timezone.ts ├── compiler.ts ├── context.ts ├── engine.ts ├── enum.ts ├── errors.ts ├── exec.ts ├── frame.ts ├── index.ts ├── instructions.ts ├── matcher.ts ├── matchers.ts ├── math.ts ├── node.ts ├── opcodes.ts ├── parser.ts ├── patterns.ts ├── plugin.ts ├── plugins │ ├── enums.ts │ ├── formatters.commerce.ts │ ├── formatters.content.ts │ ├── formatters.core.ts │ ├── formatters.date.ts │ ├── formatters.datecldr.ts.txt │ ├── formatters.i18n.ts │ ├── formatters.missing.ts │ ├── formatters.social.ts │ ├── index.ts │ ├── messages.ts │ ├── options.ts │ ├── predicates.commerce.ts │ ├── predicates.content.ts │ ├── predicates.core.ts │ ├── predicates.i18n.ts │ ├── predicates.missing.ts │ ├── predicates.slide.ts │ ├── predicates.social.ts │ ├── templates │ │ ├── add-to-cart-btn.html │ │ ├── add-to-cart-btn.json │ │ ├── audio-player.html │ │ ├── audio-player.json │ │ ├── comment-link.html │ │ ├── comment-link.json │ │ ├── comments.html │ │ ├── comments.json │ │ ├── like-button.html │ │ ├── like-button.json │ │ ├── product-checkout.html │ │ ├── product-checkout.json │ │ ├── product-price.html │ │ ├── product-price.json │ │ ├── product-restock-notification.html │ │ ├── product-restock-notification.json │ │ ├── product-scarcity.html │ │ ├── product-scarcity.json │ │ ├── quantity-input.html │ │ ├── quantity-input.json │ │ ├── subscription-price.html │ │ ├── subscription-price.json │ │ ├── summary-form-field-address.html │ │ ├── summary-form-field-address.json │ │ ├── summary-form-field-checkbox.html │ │ ├── summary-form-field-checkbox.json │ │ ├── summary-form-field-date.html │ │ ├── summary-form-field-date.json │ │ ├── summary-form-field-likert.html │ │ ├── summary-form-field-likert.json │ │ ├── summary-form-field-name.html │ │ ├── summary-form-field-name.json │ │ ├── summary-form-field-phone.html │ │ ├── summary-form-field-phone.json │ │ ├── summary-form-field-time.html │ │ ├── summary-form-field-time.json │ │ ├── variants-select.html │ │ └── variants-select.json │ ├── util.color.ts │ ├── util.commerce.ts │ ├── util.content.ts │ ├── util.date.ts │ ├── util.datecldr.ts.txt │ ├── util.format.ts │ ├── util.i18n.ts │ ├── util.social.ts │ ├── util.string.ts │ └── util.timezone.ts ├── pretty.ts ├── scan.ts ├── sink.ts ├── types.ts ├── util.ts └── variable.ts ├── tsconfig.json ├── tsconfig.lint.json └── tslint.json /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.json 3 | 4 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/README.md -------------------------------------------------------------------------------- /__benchmarks__/benchmark.engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__benchmarks__/benchmark.engine.ts -------------------------------------------------------------------------------- /__benchmarks__/benchmark.parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__benchmarks__/benchmark.parser.ts -------------------------------------------------------------------------------- /__benchmarks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__benchmarks__/index.ts -------------------------------------------------------------------------------- /__benchmarks__/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__benchmarks__/typings.d.ts -------------------------------------------------------------------------------- /__benchmarks__/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__benchmarks__/util.ts -------------------------------------------------------------------------------- /__tests__/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/api.test.ts -------------------------------------------------------------------------------- /__tests__/assembler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/assembler.test.ts -------------------------------------------------------------------------------- /__tests__/cldr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/cldr.ts -------------------------------------------------------------------------------- /__tests__/compiler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/compiler.test.ts -------------------------------------------------------------------------------- /__tests__/context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/context.test.ts -------------------------------------------------------------------------------- /__tests__/engine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/engine.test.ts -------------------------------------------------------------------------------- /__tests__/enum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/enum.test.ts -------------------------------------------------------------------------------- /__tests__/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/errors.test.ts -------------------------------------------------------------------------------- /__tests__/eval.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/eval.test.ts -------------------------------------------------------------------------------- /__tests__/executor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/executor.test.ts -------------------------------------------------------------------------------- /__tests__/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/helpers.ts -------------------------------------------------------------------------------- /__tests__/include.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/include.test.ts -------------------------------------------------------------------------------- /__tests__/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/loader.ts -------------------------------------------------------------------------------- /__tests__/matcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/matcher.test.ts -------------------------------------------------------------------------------- /__tests__/math.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/math.test.ts -------------------------------------------------------------------------------- /__tests__/mathext.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/mathext.test.ts -------------------------------------------------------------------------------- /__tests__/node.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/node.test.ts -------------------------------------------------------------------------------- /__tests__/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/parser.test.ts -------------------------------------------------------------------------------- /__tests__/patterns.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/patterns.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/enums.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/enums.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.commerce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.commerce.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.content.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.core.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.core.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.date.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.i18n.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.i18n.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.missing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.missing.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/formatters.social.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/formatters.social.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/messages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/messages.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/options.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.commerce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.commerce.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.content.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.core.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.core.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.missing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.missing.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.slide.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.slide.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/predicates.social.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/predicates.social.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-absurl-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-absurl-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-activate-twitter-links-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-activate-twitter-links-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-10.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-8.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-9.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-subscribable-attribute-false.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-subscribable-attribute-false.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-add-to-cart-btn-subscribable-attribute-true.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-add-to-cart-btn-subscribable-attribute-true.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-apply-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-apply-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-audio-player-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-audio-player-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-bookkeeper-money-format-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-bookkeeper-money-format-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-bookkeeper-money-format-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-bookkeeper-money-format-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-bookkeeper-money-format-3.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | "A" 3 | 4 | :TEMPLATE 5 | {@|bookkeeper-money-format} 6 | 7 | :OUTPUT 8 | $0.00 -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-capitalize-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-capitalize-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cart-quantity-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cart-quantity-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cart-quantity-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cart-quantity-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cart-subtotal-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cart-subtotal-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cart-url-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cart-url-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-child-image-meta-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-child-image-meta-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-color-weight-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-color-weight-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-count-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-count-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-count-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-count-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-count-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-count-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-link-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-link-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-link-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-link-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comment-link-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comment-link-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comments-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comments-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comments-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comments-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-comments-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-comments-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-count-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-count-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cover-image-meta-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cover-image-meta-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-cycle-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-cycle-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-date-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-date-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-date-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-date-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-date-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-date-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-datetime-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-datetime-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-datetime-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-datetime-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-datetime-interval-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-datetime-interval-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-decimal-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-decimal-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-encode-space-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-encode-space-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-encode-uri-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-encode-uri-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-encode-uri-component-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-encode-uri-component-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-format-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-format-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-format-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-format-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-format-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-format-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-from-price-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-from-price-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-get-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-get-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-google-calendar-url-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-google-calendar-url-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-google-calendar-url-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-google-calendar-url-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-google-calendar-url-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-google-calendar-url-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-height-1.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | { 3 | "hw": "800x400" 4 | } 5 | 6 | :TEMPLATE 7 | {hw|height} 8 | 9 | :OUTPUT 10 | 400 11 | -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-html-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-html-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-htmlattr-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-htmlattr-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-htmltag-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-htmltag-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-humanize-duration-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-humanize-duration-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-color-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-color-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-color-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-color-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-color-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-color-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-color-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-color-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-color-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-color-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-meta-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-meta-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-meta-2.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | {} 3 | 4 | 5 | :TEMPLATE 6 | {foo|image-meta 1} 7 | 8 | :OUTPUT 9 | -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-srcset-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-srcset-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-srcset-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-srcset-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-srcset-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-srcset-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-srcset-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-image-srcset-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-image-srcset-5.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | {} 3 | 4 | 5 | :TEMPLATE 6 | {foo|image-srcset 1} 7 | 8 | :OUTPUT 9 | -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-item-classes-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-item-classes-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-item-classes-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-item-classes-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-item-classes-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-item-classes-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-iter-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-iter-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-pretty-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-pretty-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-json-pretty-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-json-pretty-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-key-by-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-key-by-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-like-button-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-like-button-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-like-button-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-like-button-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-lookup-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-lookup-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-10.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-11.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-12.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-8.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-9.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-macro-ctx-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-macro-ctx-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-plural-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-plural-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-message-plural-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-message-plural-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-missing-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-missing-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-mod-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-mod-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-money-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-money-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-money-format-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-money-format-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-money-format-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-money-format-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-money-format-camel-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-money-format-camel-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-money-string-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-money-string-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-normal-price-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-normal-price-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-output-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-output-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-percentage-format-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-percentage-format-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-percentage-format-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-percentage-format-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-percentage-format-3.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | "A" 3 | 4 | :TEMPLATE 5 | {@|percentage-format trim} 6 | 7 | :OUTPUT 8 | 0 -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-plural-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-plural-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-pluralize-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-pluralize-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-checkout-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-checkout-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-10.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-8.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-9.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-bi-weekly-for-a-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-bi-weekly-for-a-year.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-from-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-from-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-from-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-from-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-from-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-from-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-from-weekly-on-sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-from-weekly-on-sale.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-from-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-from-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-monthly-for-a-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-monthly-for-a-year.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-on-sale-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-weekly-localized-multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-weekly-localized-multiple.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-weekly-localized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-weekly-localized.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-finite-subscription-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-finite-subscription-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-from-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-from-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-from-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-from-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-from-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-from-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-from-weekly-on-sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-from-weekly-on-sale.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-from-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-from-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-on-sale-bi-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-on-sale-bi-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-on-sale-bi-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-on-sale-bi-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-on-sale-monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-on-sale-monthly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-on-sale-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-on-sale-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-weekly-localized-multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-weekly-localized-multiple.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-weekly-localized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-weekly-localized.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-weekly-plan-unavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-weekly-plan-unavailable.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-price-subscription-weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-price-subscription-weekly.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-quick-view-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-quick-view-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-quick-view-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-quick-view-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-quick-view-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-quick-view-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-quick-view-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-quick-view-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-quick-view-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-quick-view-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-restock-notification-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-restock-notification-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-scarcity-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-scarcity-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-8.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-product-status-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-product-status-9.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-prop-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-prop-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-prop-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-prop-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-prop-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-prop-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-quantity-input-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-quantity-input-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-quantity-input-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-quantity-input-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-quantity-input-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-quantity-input-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-quantity-input-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-quantity-input-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-quantity-input-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-quantity-input-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-raw-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-raw-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-relative-time-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-relative-time-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-resized-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-resized-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-round-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-round-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-safe-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-safe-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-sale-price-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-sale-price-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-slugify-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-slugify-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-smartypants-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-smartypants-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-social-button-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-social-button-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-social-button-inline-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-social-button-inline-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-str-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-str-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-multiple-variants-and-multiple-pricing-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-multiple-variants-and-multiple-pricing-options.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-multiple-variants-from-price.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-multiple-variants-from-price.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-no-pricing-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-no-pricing-options.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-on-sale-variants-pricing-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-on-sale-variants-pricing-options.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-one-on-sale-pricing-option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-one-on-sale-pricing-option.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-one-pricing-option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-one-pricing-option.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-subscription-price-variants-with-same-pricing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-subscription-price-variants-with-same-pricing.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-address-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-address-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-address-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-address-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-checkbox-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-checkbox-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-checkbox-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-checkbox-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-checkbox-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-checkbox-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-date-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-date-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-default-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-default-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-likert-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-likert-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-name-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-name-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-phone-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-phone-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-phone-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-phone-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-time-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-time-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-time-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-time-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-time-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-time-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-summary-form-field-unk-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-summary-form-field-unk-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-timesince-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-timesince-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-truncate-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-truncate-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-twitter-follow-button-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-twitter-follow-button-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-twitter-follow-button-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-twitter-follow-button-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-url-encode-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-url-encode-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variant-descriptor-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variant-descriptor-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variant-descriptor-2.html: -------------------------------------------------------------------------------- 1 | :JSON 2 | { 3 | } 4 | 5 | :TEMPLATE 6 | {@|variant-descriptor} 7 | 8 | :OUTPUT 9 | 10 | -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-6.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-7.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-variants-select-subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-variants-select-subscription.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-video-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-video-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-video-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-video-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-video-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-video-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-website-color-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-website-color-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-website-color-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-website-color-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-website-color-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-website-color-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-website-color-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-website-color-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-website-color-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-website-color-5.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/f-width-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/f-width-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/get-item-variant-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/get-item-variant-options.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/get-total-stock-remaining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/get-total-stock-remaining.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/has-variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/has-variants.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/has-varied-prices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/has-varied-prices.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-datetime-interval-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-datetime-interval-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-decimal-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-decimal-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-decimal-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-decimal-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-foo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-foo.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-datetime-interval-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-datetime-interval-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-datetime-interval-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-datetime-interval-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-named-args.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-named-args.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-plural-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-plural-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-plural-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-plural-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-plural-pl-PL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-plural-pl-PL.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-units-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-units-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-message-units-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-message-units-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-angle-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-angle-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-area-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-area-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-digital-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-digital-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-duration-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-duration-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-frequency-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-frequency-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-length-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-length-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/f-unit-temperature-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/f-unit-temperature-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-AUD-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-AUD-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-CAD-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-CAD-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-EUR-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-EUR-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-GBP-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-GBP-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-JPY-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-JPY-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-SEK-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-SEK-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-de_DE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-de_DE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-en_UK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-en_UK.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-en_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-en_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-es_US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-es_US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-fr_FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-fr_FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/i18n-money-format-USD-sv_SE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/i18n-money-format-USD-sv_SE.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/_numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/_numbers.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/acceleration-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/acceleration-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/acceleration-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/acceleration-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/acceleration-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/acceleration-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/angle-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/angle-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/angle-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/angle-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/angle-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/angle-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/area-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/area-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/area-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/area-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/area-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/area-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/consumption-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/consumption-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/consumption-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/consumption-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/consumption-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/consumption-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/digital-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/digital-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/digital-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/digital-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/digital-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/digital-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/duration-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/duration-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/duration-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/duration-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/duration-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/duration-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/electric-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/electric-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/electric-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/electric-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/electric-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/electric-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/energy-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/energy-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/energy-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/energy-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/energy-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/energy-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/frequency-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/frequency-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/frequency-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/frequency-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/frequency-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/frequency-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/length-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/length-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/length-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/length-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/length-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/length-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/mass-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/mass-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/mass-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/mass-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/mass-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/mass-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/power-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/power-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/power-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/power-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/power-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/power-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/speed-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/speed-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/speed-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/speed-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/speed-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/speed-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/temperature-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/temperature-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/temperature-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/temperature-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/temperature-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/temperature-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/volume-in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/volume-in.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/volume-out-en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/volume-out-en-US.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/i18n/units/volume-out-fr-FR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/i18n/units/volume-out-fr-FR.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/is-multi-quantity-allowed-for-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/is-multi-quantity-allowed-for-services.json -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-active-time-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-active-time-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-attachment-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-attachment-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-audio-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-audio-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-background-source-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-background-source-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-binary-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-binary-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-calendar-view-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-calendar-view-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-checkin-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-checkin-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-child-images-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-child-images-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-child-images-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-child-images-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-child-images-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-child-images-3.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-child-images-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-child-images-4.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-clickable-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-clickable-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-collection-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-collection-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-collection-page-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-collection-page-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-collection-template-page-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-collection-template-page-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-collection-type-name-equals-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-collection-type-name-equals-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-comments-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-comments-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-comparisons-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-comparisons-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-current-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-current-type.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-debug-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-debug-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-debug-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-debug-2.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-disqus-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-disqus-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-even-odd-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-even-odd-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-excerpt-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-excerpt-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-external-link-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-external-link-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-external-video-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-external-video-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-folder-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-folder-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-gallery-active-alignment-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-gallery-active-alignment-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-gallery-boolean-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-gallery-boolean-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-gallery-design-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-gallery-design-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-gallery-meta-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-gallery-meta-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-gallery-meta-position-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-gallery-meta-position-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-has-multiple-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-has-multiple-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-has-variants-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-has-variants-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-index-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-location-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-location-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-main-image-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-main-image-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-nth-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-nth-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-on-sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-on-sale.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-passthrough-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-passthrough-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-plural-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-plural-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-promoted-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-promoted-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-record-type-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-record-type-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-redirect-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-redirect-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-same-day-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-same-day-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-service-name-email-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-service-name-email-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-show-past-events-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-show-past-events-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-singular-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-singular-1.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-sold-out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-sold-out.html -------------------------------------------------------------------------------- /__tests__/plugins/resources/p-varied-prices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/resources/p-varied-prices.html -------------------------------------------------------------------------------- /__tests__/plugins/util.color.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.color.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/util.commerce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.commerce.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/util.content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.content.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/util.format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.format.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/util.social.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.social.test.ts -------------------------------------------------------------------------------- /__tests__/plugins/util.string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/plugins/util.string.test.ts -------------------------------------------------------------------------------- /__tests__/pretty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/pretty.test.ts -------------------------------------------------------------------------------- /__tests__/resources/ast-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-1.html -------------------------------------------------------------------------------- /__tests__/resources/ast-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-10.html -------------------------------------------------------------------------------- /__tests__/resources/ast-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-11.html -------------------------------------------------------------------------------- /__tests__/resources/ast-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-12.html -------------------------------------------------------------------------------- /__tests__/resources/ast-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-13.html -------------------------------------------------------------------------------- /__tests__/resources/ast-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-14.html -------------------------------------------------------------------------------- /__tests__/resources/ast-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-15.html -------------------------------------------------------------------------------- /__tests__/resources/ast-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-16.html -------------------------------------------------------------------------------- /__tests__/resources/ast-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-17.html -------------------------------------------------------------------------------- /__tests__/resources/ast-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-18.html -------------------------------------------------------------------------------- /__tests__/resources/ast-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-19.html -------------------------------------------------------------------------------- /__tests__/resources/ast-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-2.html -------------------------------------------------------------------------------- /__tests__/resources/ast-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-20.html -------------------------------------------------------------------------------- /__tests__/resources/ast-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-3.html -------------------------------------------------------------------------------- /__tests__/resources/ast-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-4.html -------------------------------------------------------------------------------- /__tests__/resources/ast-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-5.html -------------------------------------------------------------------------------- /__tests__/resources/ast-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-6.html -------------------------------------------------------------------------------- /__tests__/resources/ast-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-7.html -------------------------------------------------------------------------------- /__tests__/resources/ast-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-8.html -------------------------------------------------------------------------------- /__tests__/resources/ast-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ast-9.html -------------------------------------------------------------------------------- /__tests__/resources/bindvar-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/bindvar-1.html -------------------------------------------------------------------------------- /__tests__/resources/bindvar-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/bindvar-2.html -------------------------------------------------------------------------------- /__tests__/resources/ctxvar-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/ctxvar-1.html -------------------------------------------------------------------------------- /__tests__/resources/eval-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-1.html -------------------------------------------------------------------------------- /__tests__/resources/eval-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-10.html -------------------------------------------------------------------------------- /__tests__/resources/eval-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-11.html -------------------------------------------------------------------------------- /__tests__/resources/eval-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-12.html -------------------------------------------------------------------------------- /__tests__/resources/eval-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-2.html -------------------------------------------------------------------------------- /__tests__/resources/eval-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-3.html -------------------------------------------------------------------------------- /__tests__/resources/eval-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-4.html -------------------------------------------------------------------------------- /__tests__/resources/eval-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-5.html -------------------------------------------------------------------------------- /__tests__/resources/eval-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-6.html -------------------------------------------------------------------------------- /__tests__/resources/eval-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-7.html -------------------------------------------------------------------------------- /__tests__/resources/eval-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-8.html -------------------------------------------------------------------------------- /__tests__/resources/eval-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/eval-9.html -------------------------------------------------------------------------------- /__tests__/resources/include-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/include-1.html -------------------------------------------------------------------------------- /__tests__/resources/include-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/include-2.html -------------------------------------------------------------------------------- /__tests__/resources/inject-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/inject-1.html -------------------------------------------------------------------------------- /__tests__/resources/inject-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/inject-2.html -------------------------------------------------------------------------------- /__tests__/resources/pretty-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/pretty-1.txt -------------------------------------------------------------------------------- /__tests__/resources/pretty-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/pretty-2.txt -------------------------------------------------------------------------------- /__tests__/resources/variables-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/resources/variables-1.html -------------------------------------------------------------------------------- /__tests__/rng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/rng.ts -------------------------------------------------------------------------------- /__tests__/scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/scan.test.ts -------------------------------------------------------------------------------- /__tests__/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/types.test.ts -------------------------------------------------------------------------------- /__tests__/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/__tests__/util.test.ts -------------------------------------------------------------------------------- /bin/templatec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/bin/templatec.js -------------------------------------------------------------------------------- /deprecate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/deprecate -------------------------------------------------------------------------------- /examples/basic-usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/examples/basic-usage/README.md -------------------------------------------------------------------------------- /examples/basic-usage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/examples/basic-usage/package.json -------------------------------------------------------------------------------- /examples/basic-usage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/examples/basic-usage/src/index.ts -------------------------------------------------------------------------------- /examples/basic-usage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/examples/basic-usage/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/package.json -------------------------------------------------------------------------------- /prerelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/prerelease -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/release -------------------------------------------------------------------------------- /rollup-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/rollup-test.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/dump-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/scripts/dump-plugins.ts -------------------------------------------------------------------------------- /scripts/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/scripts/generate.ts -------------------------------------------------------------------------------- /src/assembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/assembler.ts -------------------------------------------------------------------------------- /src/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/builder.ts -------------------------------------------------------------------------------- /src/calendars/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/calendar.ts -------------------------------------------------------------------------------- /src/calendars/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/constants.ts -------------------------------------------------------------------------------- /src/calendars/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/fields.ts -------------------------------------------------------------------------------- /src/calendars/gregorian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/gregorian.ts -------------------------------------------------------------------------------- /src/calendars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/index.ts -------------------------------------------------------------------------------- /src/calendars/timezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/calendars/timezone.ts -------------------------------------------------------------------------------- /src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/compiler.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/engine.ts -------------------------------------------------------------------------------- /src/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/enum.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/exec.ts -------------------------------------------------------------------------------- /src/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/frame.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/instructions.ts -------------------------------------------------------------------------------- /src/matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/matcher.ts -------------------------------------------------------------------------------- /src/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/matchers.ts -------------------------------------------------------------------------------- /src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/math.ts -------------------------------------------------------------------------------- /src/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/node.ts -------------------------------------------------------------------------------- /src/opcodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/opcodes.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/parser.ts -------------------------------------------------------------------------------- /src/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/patterns.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/plugins/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/enums.ts -------------------------------------------------------------------------------- /src/plugins/formatters.commerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.commerce.ts -------------------------------------------------------------------------------- /src/plugins/formatters.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.content.ts -------------------------------------------------------------------------------- /src/plugins/formatters.core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.core.ts -------------------------------------------------------------------------------- /src/plugins/formatters.date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.date.ts -------------------------------------------------------------------------------- /src/plugins/formatters.datecldr.ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.datecldr.ts.txt -------------------------------------------------------------------------------- /src/plugins/formatters.i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.i18n.ts -------------------------------------------------------------------------------- /src/plugins/formatters.missing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.missing.ts -------------------------------------------------------------------------------- /src/plugins/formatters.social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/formatters.social.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/messages.ts -------------------------------------------------------------------------------- /src/plugins/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/options.ts -------------------------------------------------------------------------------- /src/plugins/predicates.commerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.commerce.ts -------------------------------------------------------------------------------- /src/plugins/predicates.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.content.ts -------------------------------------------------------------------------------- /src/plugins/predicates.core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.core.ts -------------------------------------------------------------------------------- /src/plugins/predicates.i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.i18n.ts -------------------------------------------------------------------------------- /src/plugins/predicates.missing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.missing.ts -------------------------------------------------------------------------------- /src/plugins/predicates.slide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.slide.ts -------------------------------------------------------------------------------- /src/plugins/predicates.social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/predicates.social.ts -------------------------------------------------------------------------------- /src/plugins/templates/add-to-cart-btn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/add-to-cart-btn.html -------------------------------------------------------------------------------- /src/plugins/templates/add-to-cart-btn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/add-to-cart-btn.json -------------------------------------------------------------------------------- /src/plugins/templates/audio-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/audio-player.html -------------------------------------------------------------------------------- /src/plugins/templates/audio-player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/audio-player.json -------------------------------------------------------------------------------- /src/plugins/templates/comment-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/comment-link.html -------------------------------------------------------------------------------- /src/plugins/templates/comment-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/comment-link.json -------------------------------------------------------------------------------- /src/plugins/templates/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/comments.html -------------------------------------------------------------------------------- /src/plugins/templates/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/comments.json -------------------------------------------------------------------------------- /src/plugins/templates/like-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/like-button.html -------------------------------------------------------------------------------- /src/plugins/templates/like-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/like-button.json -------------------------------------------------------------------------------- /src/plugins/templates/product-checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-checkout.html -------------------------------------------------------------------------------- /src/plugins/templates/product-checkout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-checkout.json -------------------------------------------------------------------------------- /src/plugins/templates/product-price.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-price.html -------------------------------------------------------------------------------- /src/plugins/templates/product-price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-price.json -------------------------------------------------------------------------------- /src/plugins/templates/product-restock-notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-restock-notification.html -------------------------------------------------------------------------------- /src/plugins/templates/product-restock-notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-restock-notification.json -------------------------------------------------------------------------------- /src/plugins/templates/product-scarcity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-scarcity.html -------------------------------------------------------------------------------- /src/plugins/templates/product-scarcity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/product-scarcity.json -------------------------------------------------------------------------------- /src/plugins/templates/quantity-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/quantity-input.html -------------------------------------------------------------------------------- /src/plugins/templates/quantity-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/quantity-input.json -------------------------------------------------------------------------------- /src/plugins/templates/subscription-price.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/subscription-price.html -------------------------------------------------------------------------------- /src/plugins/templates/subscription-price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/subscription-price.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-address.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-address.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-checkbox.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-checkbox.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-date.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-date.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-likert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-likert.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-likert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-likert.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-name.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-name.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-phone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-phone.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-phone.json -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-time.html -------------------------------------------------------------------------------- /src/plugins/templates/summary-form-field-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/summary-form-field-time.json -------------------------------------------------------------------------------- /src/plugins/templates/variants-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/variants-select.html -------------------------------------------------------------------------------- /src/plugins/templates/variants-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/templates/variants-select.json -------------------------------------------------------------------------------- /src/plugins/util.color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.color.ts -------------------------------------------------------------------------------- /src/plugins/util.commerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.commerce.ts -------------------------------------------------------------------------------- /src/plugins/util.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.content.ts -------------------------------------------------------------------------------- /src/plugins/util.date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.date.ts -------------------------------------------------------------------------------- /src/plugins/util.datecldr.ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.datecldr.ts.txt -------------------------------------------------------------------------------- /src/plugins/util.format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.format.ts -------------------------------------------------------------------------------- /src/plugins/util.i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.i18n.ts -------------------------------------------------------------------------------- /src/plugins/util.social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.social.ts -------------------------------------------------------------------------------- /src/plugins/util.string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.string.ts -------------------------------------------------------------------------------- /src/plugins/util.timezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/plugins/util.timezone.ts -------------------------------------------------------------------------------- /src/pretty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/pretty.ts -------------------------------------------------------------------------------- /src/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/scan.ts -------------------------------------------------------------------------------- /src/sink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/sink.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/src/variable.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/tsconfig.lint.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squarespace/template-engine/HEAD/tslint.json --------------------------------------------------------------------------------