-
Notifications
You must be signed in to change notification settings - Fork 28
Fix [Sphinx] [Automation] Issue -> PR conversion of hyperlinks | Closes #221 #226
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
Conversation
✅ Deploy Preview for scrc-coding-guidelines ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Thanks for this @MarcosBorgesPhD! I'll try to make time this week to review |
|
Hey @MarcosBorgesPhD -- updating the Please back that out of your PRs and do so on a separate PR if you'd like to. This helps for traceability. I'll then merge that |
f5232d6 to
2b72e39
Compare
plaindocs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @MarcosBorgesPhD thanks for working on this.
It looks like you have some unrelated changes in the PR, such as the updated footer, would you mind removing those?
The actual normalisation of markdown looks fine.
|
Hey @PLeVasseur and @plaindocs, Thanks for the guidance! I have cleaned up unnecessary changes resulting from rebases. This PR now contains only the changes relevant to the issue. Please validate the PR #236 before. |
- Convert inline-code links like [`text`](url) to standard [text](url)
- Correct mixed bold/code formatting:
- **`code`** → `code`
- `**code**` → `code`
This prevents Markdown parser errors in issue bodies and ensures consistent formatting.
Pandoc installation is only needed for PR rustfoundation#228, so it has been removed from this branch.
3160f46 to
a8b0c6a
Compare
|
@plaindocs @PLeVasseur Apologies for the extra notifications.
|
plaindocs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! This looks great.
Normalize Markdown in issue bodies to prevent parser errors and inconsistent formatting. This ensures hyperlinks in Issue -> PR conversion are correctly rendered.
Details
Convert inline-code links like
[`text`](url)to standard[text](url)Correct mixed bold/code formatting:
Notes
This is PR 1/3 in a series improving Issue -> PR conversion:
Closes #221