Closed erasmus closed 8 years ago
And is the {{ text|urlencode:"" }}
actually doing it's job?
Comma is the issue:
Regarding your questions:
Ariel - Currently line spacing configuration isn't supported. It is on our road map to support it as well.
Thiru - The issue with the comma is that it collides with Cloudinary's functionality. Specifically commas in Cloudinary URLs are used for separating between different transformation parameters (e.g., w_100,h_100 ...). So if the regular comma (or even its %2C escaped version) is used, Cloudinary thinks that the next parameter is entered rather than the rest of the text string.
Therefore, you can double escape the comma ( %252C ):
Alternatively, you can use a special encoding of another comma ( %E2%80%9A ):
I can't figure out exactly what but some special chars seem to break.
Try e.g.
http://localhost:8000/artboard/v1469648030/h71j8fjmc6zijslrjwsv.jpg/?cutout=dp-cutout5.png&text=%C2%B1!%20%40%20%C2%A3%20%24%25%20%20%20%5E%26%20*%20()%20_%20%2B%20..%3C%2C%3E%20%2F%3E
@avorio can you spot anything?