-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Including a README.md with links that contain &
s, "translates them" to &
#19
Comments
@amyreese I am running into the same issue. Would it be complex to fix? I looked into the code, but would not know how to solve it directly |
I did a lot of digging in the sphinx-mdinclude and mistune code and found that this is because of an issue in mistune: lepture/mistune#372 I am not sure if it will be resolved there, but if it will it will probably only be resolved in mistune>3.0. sphinx-mdinclude requires mistune 2 at the moment. A sort of decent alternative is to add some replacements to the
These replacements will result in the desired outputs for these two usecases: from sphinx_mdinclude.render import convert
src = "[A link with ampersand](https://sonarcloud.io/api/project_badges/measure?project=Deltares_ddlpy&metric=alert_status)"
out = convert(src)
print(out)
src = "[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Deltares_ddlpy&metric=alert_status)](https://sonarcloud.io/summary/overall?id=Deltares_ddlpy)"
out = convert(src)
print(out) |
Since sphinx-mdinclude now supports mistune>=3, I think the issue should be resolved in mistune. I will update my findings in lepture/mistune#372 |
These issues are probably resolved with mistune PR's lepture/mistune#393 and lepture/mistune#395 by @mentalisttraceur |
Description
With README.md of
Url
https://img.shields.io/static/v1.svg?label=CalVer&message=v0.2.0+2022.09.1000&color=blue
is rendered ashttps://img.shields.io/static/v1.svg?label=CalVer&message=v0.2.0+2022.09.1000&color=blue
, breaking linkageDetails
sphinx_mdinclude 0.5.2
N/A
The text was updated successfully, but these errors were encountered: