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
Default values with only on character, for example a, are not recognised.
a
Consider the following example:
as {{age; 8:an; 11:an; 18:an; default:a;}} {{age}}-year-old
This should result in:
as an 18-year-old as an 8-year-old as a 7-year-old
But instead, the last sentence renders to:
as a; 7-year-old
It does work with a space after a:
as {{age; 8:an; 11:an; 18:an; default:a ;}} {{age}}-year-old
But I guess, that this is not how it is meant to be used.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Default values with only on character, for example
a
, are not recognised.Example
Consider the following example:
This should result in:
But instead, the last sentence renders to:
Workaround
It does work with a space after
a
:But I guess, that this is not how it is meant to be used.
The text was updated successfully, but these errors were encountered: