From 04c7fafa159760ff5ae999eb97047f271a0a549b Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Tue, 28 Mar 2017 20:39:35 -0400 Subject: 0.13.8 endnotes for various types of block --- src/sdp/output_rgx.d | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/sdp/output_rgx.d') diff --git a/src/sdp/output_rgx.d b/src/sdp/output_rgx.d index 3abd76a..9959590 100644 --- a/src/sdp/output_rgx.d +++ b/src/sdp/output_rgx.d @@ -6,8 +6,11 @@ template SiSUoutputRgxInit() { struct Rgx { static newline = ctRegex!("\n", "mg"); static space = ctRegex!(`[ ]`, "mg"); + static spaces_line_start = ctRegex!(`^(?P[ ]+)`, "mg"); + static spaces_multiple = ctRegex!(`(?P[ ]{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!(` [ ]`, "mg"); static nbsp_char_and_space = ctRegex!(`░[ ]`, "mg"); static src_pth = ctRegex!(`^(?P[a-zA-Z0-9._-]+/)*(?P[a-zA-Z0-9._-]+[.]ss[tm])$`); -- cgit v1.2.3