%'x' by 'x' (Ex: 3by3)
Context key = 'parsedNumber' (for example)
Input = 'your contract number is the {parsedNumber%3by3}'
Context = { parsedNumber: '1098736121' }
Ouput = 'your contract number is the 109\\\\pau=300\\\\873\\\\pau=300\\\\612'
%phoneNumber
Input = 'you can call me on {phoneNumber%phoneNumber}'
Context = { phoneNumber: '+33631214567' }
Ouput = 'you can call me on 06 31 21 45 67'
to have the day of the week, the month and the date: %date
Input = '{time.from%date}'
Context = { time: '2015-12-15T12:00:00+12:00' }
Ouput = 'tuesday December 15th'
Input = '{time1.from%date} ou {time2.from%date}'
Context = { time1: '2015-12-14T01:00+01:00', time2: '2015-12-15T11:40+01:00' }
Ouput = 'monday December 14th or tuesday December 15th'
to have the full date: %fulldate
Input = '{time.from%fulldate}'
Context = { time: '2015-12-14T12:00:00Z' }
Ouput = 'december 14th 2015'
to have the time in the day: %time
Input = '{timefrom%time}'
Context = { time: '2015-12-14T01:00+01:00' }
Ouput = 'at 1 hour'
to have the date and the time: %datetime
Input = '{time.from%datetime}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = 'monday December 14th at 10 35'
to have the date without preposition: %datewithoutpreposition
Input = '{time.from%datewithoutpreposition}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = 'monday may 14th'
to have the time without preposition: %timewithoutpreposition
Input = '{time.from%timewithoutpreposition}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = '10 35'
to have the day of the week: %day
Input = '{time.from%day}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = 'monday'
to have the day of the month: %dayofmonth
Input = '{time.from%dayOfMonth}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = '14'
to have the month: %month
Input = '{time.from%month}'
Context = { time: '2015-12-14T10:35+01:00' }
Ouput = 'may'