-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
Say I'm translating the whole mail body or the like. The content will be one or more lines, i.e. each line has its own line end. However, I can't figure out how to write that in fluent elegantly. I can do it this way:
body = this is a line with a line end.{"\u000a"}
Or I have to take care the last line end in my program, which means I need to do something like ''.join(part + '\n' for part in parts)
or content += translated + '\n'
instead of ''.join(parts)
or content += translated
.
yan12125
Metadata
Metadata
Assignees
Labels
No labels