Passing cloudinary parameters JS parsing issue

Trying to pass multiple parameters into Cloudinary fetch. The JS is parsing it at the comma and treating it as two separate URLs. Wondering if this is a Ghost issue or a theme issue. Any ideas of an alternative solution would be great.

<div class="m-article-card__picture lozad" data-background-image="https://res.cloudinary.com/demo/image/fetch/f_auto,w_600/{{img_url feature_image}}">

This is what it generates:
url("https://res.cloudinary.com/demo/image/fetch/f_auto"), url("w_600/https://res-1.cloudinary.com/demo/image/upload/q_auto/v1/blog-images/writing-posts-with-ghost.jpg");

This is what I would like it to generate:
url("https://res.cloudinary.com/demo/image/fetch/f_auto,w_600/https://res-1.cloudinary.com/demo/image/upload/q_auto/v1/blog-images/writing-posts-with-ghost.jpg");

-Ghost Version 3.16.1
-Liebling Theme
-Cloudinary Storage Object
-Happening in all Browsers