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
When you pass non-ascii character into the format string, it either
Crashes when passed directly
#import "@preview/oxifmt:0.2.0": strfmt #strfmt("Hello € {}", "man") // -> Character Boundary at 8
Invalidly renders
#import "@preview/oxifmt:0.2.0": strfmt #let c = yaml("content.yaml") #strfmt(c.working, company-bank-name: "FAKE", company-bank-iban: "Broken stuff") \ #strfmt(c.broken, company-bank-name: "FAKE", company-bank-iban: "Broken stuff")
with content.yaml
content.yaml
working: "Bank: {company-bank-name} - IBAN: {company-bank-iban}" broken: "Bank: {company-bank-name} € IBAN: {company-bank-iban}"
Rendering
Minimal repro's
The text was updated successfully, but these errors were encountered:
Thanks for reporting, this seems bad. I'll take a look.
Sorry, something went wrong.
Hi, I believe this should be fixed after 13f9bed. Can you give it a try in your project and let me know if it's working? Thanks!
Hi,
Missed the notifications, apologies. Checked now and it works! Thanks for the work :)
Great, thank you for checking! And you're welcome! 😄
No branches or pull requests
When you pass non-ascii character into the format string, it either
Crashes when passed directly
Invalidly renders
with
content.yaml
Rendering
Minimal repro's
The text was updated successfully, but these errors were encountered: