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
NOTE: Before you start, the following should be completed.
master
After running Jekyll build, an img tag with a src that contains a query string is improperly wrapped in an anchor tag.
<img src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white">
🔽
<a href="white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
Steps to reproduce the behavior:
(Replacing with markdown syntax ![desc](link) also makes the same problem)
![desc](link)
build exec jekyll s
<a href="white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" ls-is-cached lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
The href value is extracted from the last query string parameter of the image link.
It should not be wrapped in tag, or should be wrapped properly.
For example,
<a href="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" ls-is-cached lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
My about.md https://github.com/pastel-blog/pastel-blog.github.io/blob/main/_tabs/about.md The about page of my github.io pages after build https://pastel-blog.github.io/about/
This is my local environment. But same problem happens in github deployment.
ruby -v
gem -v
bundle -v
bundle exec jekyll -v
bundle info jekyll-theme-chirpy
The text was updated successfully, but these errors were encountered:
fix: parameter parsing error in image URL (#1022)
ee88cec
No branches or pull requests
NOTE: Before you start, the following should be completed.
master
branch.Describe the bug
After running Jekyll build, an img tag with a src that contains a query string is improperly wrapped in an anchor tag.
<img src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white">
🔽
<a href="white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
To Reproduce
Steps to reproduce the behavior:
https://github.com/pastel-blog/pastel-blog.github.io/blob/d26fedf391070bc0b66e8841e11cf97aa5ffedcd/_tabs/about.md?plain=1#L14
<img src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white">
(Replacing with markdown syntax
![desc](link)
also makes the same problem)build exec jekyll s
<a href="white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" ls-is-cached lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
The href value is extracted from the last query string parameter of the image link.
Expected behavior
It should not be wrapped in tag, or should be wrapped properly.
For example,
<a href="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class="popup img-link"><img data-src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white" class=" ls-is-cached lazyloaded" data-proofer-ignore="" src="https://img.shields.io/badge/java-007396?style=for-the-badge&logo=java&logoColor=white"></a>
Logs/Screenshots
My about.md https://github.com/pastel-blog/pastel-blog.github.io/blob/main/_tabs/about.md
The about page of my github.io pages after build https://pastel-blog.github.io/about/
Environment
This is my local environment. But same problem happens in github deployment.
ruby -v
gem -v
bundle -v
bundle exec jekyll -v
bundle info jekyll-theme-chirpy
Additional context
The text was updated successfully, but these errors were encountered: