Hi
Is there a way to "correctly" represent "bigger" floating point numbers e.g. {{ 9999999.99 }} is generated as 1E+07. It seems these numbers are internally processed as System.Single which can store smaller numbers than System.Double.
Ideally if I could "force" dotLiquid to handle this number as string.
Unfortunately I'm not able to preprocess input data (e.g. change to a string) - dotLiquid is used as a template engine by Azure API Manager so I need to handle this inside template definition.
Thanks