Great library, thanks! 👍 😄
Would you consider a PR to accept the cloud name as a parameter to Cloudex.Url.for/2, leaving the configured value as the default?
I'm currently working around not having this by replacing the cloud name in the returned URL.
[start, rest] = Regex.split(
~r/(http|https):\/\/res.cloudinary.com\/(?<cloud_name>\w+)\/.*/,
url, on: [:cloud_name]
)
Enum.join([start, desired_cloud_name, rest])