mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
fix: allow unicode to be identifiers, fixes #655
This commit is contained in:
@@ -464,4 +464,9 @@ describe('Issues', function () {
|
||||
}
|
||||
expect(engine.parseAndRenderSync(tpl, ctx)).toEqual('FOO')
|
||||
})
|
||||
it('#655 Error in the tokenization process due to an invalid value expression', () => {
|
||||
const engine = new Liquid()
|
||||
const result = engine.parseAndRenderSync('{{ÜLKE}}', { ÜLKE: 'Türkiye' })
|
||||
expect(result).toEqual('Türkiye')
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user