export const tpl1 = '
* BILL #{{billNum}} *
{{\$bill_date bill_date}}
{{\$show kpp }}';
export const tpl2 = 'Hi my name is {{person.name}}! I am {{person.age}} years old!';
export const tpl3 = 'Helper result - {{\$testHelper A "tes" 12.2 person.name }}';
export const tpl4 =
'Block Helper result - {{#blockHelper}} {{AA}} {{BB}}! {{/blockHelper}}';
export const tpl5 =
'With Block result - {{#with person}} {{name}} is {{age}} years old! {{/with}}';
export const tpl6 =
'Each Block test:{{#each items}}Item: {{name}} - {{\$formatPrice price}}{{/each}}';
export const tpl7 = 'If Block test: {{#if 2 == 1}}true{{/if}}';
export const tpl8 = `
* BILL #{{billNum}} *
{{\$bill_date modified}}
{{#items_list items}}
| {{name}} |
{{quantity}} |
{{\$item_price}} |
{{#options_list options}}
|
+ {{name}} {{text}} |
{{\$item_price}} |
{{/options_list}}
{{/items_list}}
{{\$total_sum items}}
`;