-
-
Notifications
You must be signed in to change notification settings - Fork 62.6k
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
fix: homogenize markdown across files using markdownlint rules #6988
fix: homogenize markdown across files using markdownlint rules #6988
Conversation
right markdown escape instead of use HTML entities
Multiple consecutive blank lines [Expected: 2; Actual: 3]
Spaces inside link text
Trailing spaces [Expected: 0 or 4; Actual: 1] Trailing spaces [Expected: 0 or 4; Actual: 2]
- HTML - JavaScript - YouTube
Unordered list indentation [Expected: 4; Actual: 2]
Conflicts are with merges of |
…genize to solve conflicts Cherry picked until 44579d3 commit
Conflicts remains with merges due to final blank lines |
…to solve conflicts Cherry picket until 04cf8c8 commit
Wasn't it enough to change the value of "indent" to 2? Even if that meant disabling MD005. |
According to free-programming-books/.editorconfig Lines 11 to 14 in 04cf8c8
Is this why enable MD005/MD007 to use that number of spaces. free-programming-books/.markdownlint.jsonc Lines 50 to 80 in 048c02d
Let's discuss about it if is wrong |
On the official kramdown website it says:
So I think 4 indent_size it's okay. |
Conflicts again due to #6989 merge which modifies TOC entries adding DL, ML, NLP... |
More conflicts after merge #6986 which modify TOC entries removing |
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.
What's the motivation behind replacing translated words with Englishe words?
I suppose you're referring to 4d6a74e commit which normalizes TOC section header to I don't know yet how it works but thinking in the fpb-parser, I hope it helps to filter this section from processing. It'll be easy to do using same word and heading level (3 As we can see... Of course, make a |
best not to fix something unless its broken |
Then reverting 4d6a74e 😄 |
This reverts commit 4d6a74e.
LGTM. Ready to merge? |
Yes, sure! No more work on my own. Can I merge it to get some GitHub profile achievement badges? |
go ahead
… On Aug 12, 2022, at 2:05 PM, David Ordás ***@***.***> wrote:
LGTM. Ready to merge?
Yes, sure! No more work on my own.
Can I merge it to get some GitHub profile achievement badges?
—
Reply to this email directly, view it on GitHub <#6988 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAHCGMIEAAWMFL3463DAZ5LVYY4W3ANCNFSM55YCIC4Q>.
You are receiving this because you commented.
|
What does this PR do?
Improve repo
For resources
Description
Why is this valuable (or not)?
Homogenizes using markdownlint rules (see also #6829 to check which are applied)
See each commit title/description to understand better what we are doing
Checklist:
Follow-up