I have a small project on GitHub. The project includes Readme.txt. Everything works fine in the repository, and new lines still exist, but when the user loads the ZIP file from the repo, the new lines disappear.
Example:
This is a string.
This is another line.
This is an indented line.
This line is much lower.
becomes:
This is a string. This is another line. This is the intended line. the line is much lower.
This behavior makes reading Readme.txt difficult, especially if it has a lot of indentation.
Is there any way to fix this? Preferably, in addition to changing the file type.
And for clarification, I'm going to do it without Git, with the “Download ZIP” button on the GitHub page.
source share