aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/defaults.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-03-28 20:39:35 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit04c7fafa159760ff5ae999eb97047f271a0a549b (patch)
tree1a9c1cf34cd032de20a9b0de224c0cbb8c75d37d /org/defaults.org
parentoutput, move stuff about (diff)
0.13.8 endnotes for various types of block
Diffstat (limited to 'org/defaults.org')
-rw-r--r--org/defaults.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/org/defaults.org b/org/defaults.org
index 25b1a4b..b666c30 100644
--- a/org/defaults.org
+++ b/org/defaults.org
@@ -1185,8 +1185,11 @@ template SiSUlanguageCodes() {
#+BEGIN_SRC d
static newline = ctRegex!("\n", "mg");
static space = ctRegex!(`[ ]`, "mg");
+static spaces_line_start = ctRegex!(`^(?P<opening_spaces>[ ]+)`, "mg");
+static spaces_multiple = ctRegex!(`(?P<multiple_spaces>[ ]{2,})`, "mg"); // could be issues for endnotes
static two_spaces = ctRegex!(`[ ]{2}`, "mg");
static nbsp_char = ctRegex!(`░`, "mg");
+static nbsp_chars_line_start = ctRegex!(`^░+`, "mg");
static nbsp_and_space = ctRegex!(`&nbsp;[ ]`, "mg");
static nbsp_char_and_space = ctRegex!(`░[ ]`, "mg");
#+END_SRC