chore: renormalize showdown.js to LF per .gitattributes - #163
Merged
Conversation
Commit 4b69571 ('ci: add file hygiene workflow and lint configuration') introduced an policy but the vendored showdown.js blob was left with CRLF line endings, so git continuously reports the working tree as modified. Renormalize the file to LF to satisfy the policy. No content change; only CRLF -> LF on the sourceMappingURL line. Signed-off-by: Pat Losoponkul <patextreme@hotmail.com>
patextreme
force-pushed
the
chore/renormalize-showdown-lf
branch
from
August 4, 2026 14:46
3adddcc to
88c0412
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What & why
Commit
4b69571(ci: add file hygiene workflow and lint configuration) introduced aneol=lfpolicy across the repo, but the vendored fileinitial-pages/static/showdown.jswas left with CRLF line endings. As a result, git continuously reports the working tree as modified (CRLF will be replaced by LF the next time Git touches it) even though there is no real content change.This PR renormalizes that single file to LF, completing the hygiene work started in
4b69571.Change
initial-pages/static/showdown.js: CRLF → LF on the trailingsourceMappingURLline. No content change — only the line ending.Verification
After this change, a fresh checkout/clone no longer shows
showdown.jsas modified.