We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I don't know if I'm being a complete idiot (I probably am) but for some reason the locals paths aren't being found when I run my server.
For example, if I run `jekyll serve`` locally with the following liquid tag in a page:
{% cloudinary "/assets/images/test.jpg" alt=“This is a test” caption=“Testing” loading=“lazy” %}
I get the following output from the terminal:
[Cloudinary] Couldn't find this image to check its width: /home/<user>/GitHub/<repo>/./"/assets/images/test.jpg.
I have no idea why it's splitting the path with a ./"/ in the middle.
./"/
I'm certain I'm doing something wrong, but I have no idea what. Thanks!
The text was updated successfully, but these errors were encountered:
you shouldn't use the quotes on the path
{% cloudinary /assets/images/test.jpg alt=“This is a test” caption=“Testing” loading=“lazy” %}
should work
Sorry, something went wrong.
No branches or pull requests
I don't know if I'm being a complete idiot (I probably am) but for some reason the locals paths aren't being found when I run my server.
For example, if I run `jekyll serve`` locally with the following liquid tag in a page:
I get the following output from the terminal:
I have no idea why it's splitting the path with a
./"/
in the middle.I'm certain I'm doing something wrong, but I have no idea what. Thanks!
The text was updated successfully, but these errors were encountered: