1.15.0 • Published 2 years ago

liquidjs-ov-money-filters v1.15.0

Weekly downloads
169
License
MIT
Repository
github
Last release
2 years ago

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" }}`);
1.15.0

2 years ago

1.14.0

2 years ago

1.13.0

3 years ago

1.12.0

3 years ago

1.9.0

3 years ago

1.8.0

3 years ago

1.7.0

3 years ago

1.11.0

3 years ago

1.10.0

3 years ago

1.6.0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago