Replies: 2 comments
-
|
the specification mini language is supported, please try it inside a statement e.g.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
It's my fault. I tested it with two wrong writing. With the correct format specification, it works now. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The fmt library supports numerous format specifications outlined in its syntax documentation (https://fmt.dev/11.0/syntax/#format-specification-mini-language), whereas Quill lacks these formatting capabilities.
For ecample, outputting numbers with zero-padded 4-digit width in hex (e.g., 0x0030 instead of 48), is there a simpler method than implementing a custom formatter? While one approach could be pre-formatting values using fmt and then passing the formatted strings to Quill, I'm concerned about the potential performance overhead of this dual-step process.
Beta Was this translation helpful? Give feedback.
All reactions