dermatthes/text-template

how to escape {} in template

Opened this issue · 0 comments

_in.php

<?php
return [
    "value" => "Some Value"
];

_in.txt

{= value } and \{"Other value"\}

expect:
_out.txt

Some Value and {"Other value"}