Delimiters should use the system line separator by default

This commit is contained in:
Robert Winkler
2020-06-16 09:40:31 +02:00
parent f471774da9
commit e8a51345a8

View File

@@ -16,7 +16,7 @@ public class Delimiters {
public static final String DELIMITER_THEMATIC_BREAK = "'''";
public static final String DELIMITER_VERSE = "____";
public static final String DOCUMENT_TITLE = "=";
public static final String LINE_SEPARATOR = "\n";
public static final String LINE_SEPARATOR = System.getProperty("line.separator");
public static final String MARKER_LIST_ITEM = "*";
public static final String MARKER_D_LIST_ITEM = ":";
public static final String STYLE_HORIZONTAL = "horizontal";