liquidjs-ov-money-filters
v1.15.0
Published
Money filters for liquidjs used by OnVoard
Downloads
236
Readme
liquidjs-ov-money-filters
Money filters for liquidjs used by OnVoard.
Installation
yarn add liquidjs-ov-money-filters
Examples
Setup plugin
import { Liquid } from 'liquidjs';
import { moneyFiltersPlugin } from 'liquidjs-ov-money-filters';
const engine = new Liquid();
engine.plugin(moneyFiltersPlugin);
money
Format money and display with currency
# Output: US$79.50
engine.parseAndRenderSync(`{{ 79.5|money:"USD" }}`);
money_native
Format money and display with currency's native symbol
# Output: $79.50
engine.parseAndRenderSync(`{{ 79.5|money_native:"USD" }}`);
money_without_prefix
Format money and display without currency prefix. Currency still needs to be passed since not all currencies gets rounded to 2 decimal place. Passed currency will be used to round money to the correct decimal place.
# Output: 79.50
engine.parseAndRenderSync(`{{ 79.5|money_without_prefix:"USD" }}`);
money_tag
Wrap money with span element <span class="money" data-currency="{{ currency }}">{{ value }}</span>. This is a convention to support currency conversion apps, allowing them to auto detect and convert prices to another currency.
# Output: <span class="money" data-currency="USD">$79.50</span>
engine.parseAndRenderSync(`{{ 79.5|money_native:"USD"|money_tag:"USD" }}`);