-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Changed - `FileRenderer` (and thus `DirectoryRenderer`) now use `\n` line endings in the resulting file. This should probably just be an option with the default being to preserve the line ending format of the template file, but since this is being used to render files that should run on Linux and apparently incorrect line endings mess up the shebang reading and sh*t like that so I'm applying this "sh*t fix" for now.
- Loading branch information
1 parent
2ee878b
commit 00e961f
Showing
5 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{% setfilename %} | ||
{{colors.favorite}}_file.txt | ||
{% endsetfilename %} | ||
My name is {{name}} and I am {{age}} years old and my favorite color is NOT {{colors.weakness}} | ||
My name is {{name}} and | ||
I am {{age}} years old and my | ||
favorite color is NOT {{colors.weakness}} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.7.0' | ||
__version__ = '0.8.0' | ||
|
||
__author__ = 'Thordur Matthiasson <[email protected]>' | ||
__license__ = 'MIT License' | ||
|
This file contains 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