From b0380adc5f1876eaa39573fc1776abf9f18f00d1 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Fri, 19 Jun 2020 21:55:43 +0200 Subject: [PATCH] Added line and paragraph separatir unicodes back into nwUnicode class --- nw/constants/constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nw/constants/constants.py b/nw/constants/constants.py index 1ff5da4f..e4e6af98 100644 --- a/nw/constants/constants.py +++ b/nw/constants/constants.py @@ -229,10 +229,12 @@ class nwUnicode: U_EMDASH = "\u2014" # Long dash U_HELLIP = "\u2026" # Ellipsis - ## Spaces + ## Spaces and Lines U_NBSP = "\u00a0" # Non-breaking space U_THNSP = "\u2009" # Thin space U_THNBSP = "\u202f" # Thin non-breaking space + U_LSEP = "\u2028" # Line separator + U_PSEP = "\u2029" # Paragraph separator ## Symbols U_CHECK = "\u2714" # Heavy check mark