We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b71a2 commit 72e9b93Copy full SHA for 72e9b93
1 file changed
lib/source/pl/core/resolvers.cpp
@@ -42,7 +42,8 @@ namespace pl::core::resolvers {
42
return Result::err("Path " + utf8 + " is not a regular file");
43
}
44
45
- const auto content = file.readString();
+ auto content = file.readString();
46
+ content = wolv::util::replaceStrings(content, "\r\n", "\n");
47
48
return Result::good(api::Source(content, utf8, false));
49
0 commit comments