We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is sometimes convenient for readability to add non-significant whitespace around blocks markup. So instead of writing:
This is a lease for {{#with tenant}}{{partyId}}, domiciled at {{address}}{{/with}} entered at {{date}}.
one might want to write:
This is a lease entered by {{#with tenant}} {{partyId}}, domiciled at {{address}} {{/with}} at {{date}}
But by default, this will interact with formatting and generate whitespace in the contract which may result in different rendering. Here is a proposal for how to add/control such whitespace based on https://handlebars-draft.knappi.org/guide/expressions.html#whitespace-control
{{~name}} // Remove whitespace on left {{name~}} // Remove whitespace on right {{~name~}} // Remove whitespace on both
The text was updated successfully, but these errors were encountered:
This is an issue inherited from #392
Sorry, something went wrong.
No branches or pull requests
It is sometimes convenient for readability to add non-significant whitespace around blocks markup. So instead of writing:
one might want to write:
But by default, this will interact with formatting and generate whitespace in the contract which may result in different rendering. Here is a proposal for how to add/control such whitespace based on https://handlebars-draft.knappi.org/guide/expressions.html#whitespace-control
The text was updated successfully, but these errors were encountered: