Help with import templates syntax #125
Unanswered
richard-lee-863
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Inline function use with mixed fixed text and functions.
EDIT: How are we even supposed to deal with rounding properly? I notice that my raw data copied into a CSV file has more decimal places that what Paisa is parsing into the "preview pane". |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There may need to be a bit more clarity in the Docs about when and when not to use certain syntax, such as the wrapping {{ }}.
Especially for those new to Handlebars.
I've had a look through Handlebars documentation as well, but things seem to not be super clear.
For instance, why does this:
{{date ROW.A "DD/MM/YYYY"}} {{ROW.C}}
Have {{ }} around the entire date function, and why does the date function not have normal brackets () like you'd expect?
And why do some functions seem to not need brackets,, where others do?
For instance:
{{trim ROW.D}}
Couldn't that be written as
trim({{ROW.D}})
I have a few syntax issues to work through which i'll mention below:
Beta Was this translation helpful? Give feedback.
All reactions