-
-
Notifications
You must be signed in to change notification settings - Fork 975
New issue
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
How to combine two conversions? !S and !l for instance. #5647
Comments
By using special formatting with a Python expression, i.e. the format string in your config must start like this: Example:
|
Or, again, with an f-string, which usually makes accessing all other values easier than a Python expression.
|
This worked, thanks!
Which results in:
And is it possible to end a f-string, so that |
Access potentially undefined variables with
Nope |
to apply a conversion after ':' or to apply multiple conversions for example {tags:CSl} or {tags:J - /Cl} to convert list to string and lowercase it
Added a |
Nice, thanks! |
I want to convert a list of
{tags}
into a string and also convert it to lowercase (Sankaku now capitalizes the first letter by default). But I saw in the documentation that I can't combine two specifiers, so is there a way to do it another way?The text was updated successfully, but these errors were encountered: