Use same line endings in all doc files.

This commit is contained in:
Viktor Kovacs 2023-01-11 08:21:29 +01:00
parent 68cdf2f3eb
commit 7ee990fb3c

View File

@ -358,7 +358,8 @@ def CreateFromTemplate (templateHtmlPath, resultHtmlPath, navigation, title, con
Tools.ReplaceStringsInFile (resultHtmlPath, [
('$$$TITLE$$$', title),
('$$$NAVIGATION$$$', navigation.GenerateHtml ()),
('$$$MAIN$$$', content)
('$$$MAIN$$$', content),
('\r\n', '\n')
])
def BuildNavigation (pageGroups, hierarchy):