diff options
author | Ralph Amissah <ralph@amissah.com> | 2018-06-13 18:19:46 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:15 -0400 |
commit | f78907dd0dbcfa12698f85a6cebe77f3f5de46e9 (patch) | |
tree | 75e4adfd5404caf6b7805c5aedf977d5e3709505 /org/default_regex.org | |
parent | 0.26.3 object info changes (diff) |
object_number, replaces object_cite_number in code
Diffstat (limited to 'org/default_regex.org')
-rw-r--r-- | org/default_regex.org | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/org/default_regex.org b/org/default_regex.org index a018c1b..5278bc9 100644 --- a/org/default_regex.org +++ b/org/default_regex.org @@ -285,25 +285,25 @@ static book_index_open = ctRegex!(`^=\{\s*([^}]+? static book_index_close = ctRegex!(`^(.*?)\}$`, "m"); #+END_SRC -** no obj_cite_number object :ocn:off:object: +** no object_number object :ocn:off:object: #+name: meta_rgx #+BEGIN_SRC d -/+ no obj_cite_number object +/ -static obj_cite_number_off = ctRegex!(`~#$`, "m"); -static obj_cite_number_off_dh = ctRegex!(`-#$`, "m"); -static obj_cite_number_off_all = ctRegex!(`[~-]#$`, "m"); +/+ no object_number object +/ +static object_number_off = ctRegex!(`~#$`, "m"); +static object_number_off_dh = ctRegex!(`-#$`, "m"); +static object_number_off_all = ctRegex!(`[~-]#$`, "m"); #+END_SRC -** no obj_cite_number block :ocn:off:block: +** no object_number block :ocn:off:block: #+name: meta_rgx #+BEGIN_SRC d -/+ no obj_cite_number block +/ -static obj_cite_number_off_block = ctRegex!(`^--~#$`); -static obj_cite_number_off_block_dh = ctRegex!(`^---#$`); -static obj_cite_number_off_block_close = ctRegex!(`^--\+#$`); -static obj_cite_number_block_marks = ctRegex!(`^--[+~-]#$`); +/+ no object_number block +/ +static object_number_off_block = ctRegex!(`^--~#$`); +static object_number_off_block_dh = ctRegex!(`^---#$`); +static object_number_off_block_close = ctRegex!(`^--\+#$`); +static object_number_block_marks = ctRegex!(`^--[+~-]#$`); #+END_SRC ** ignore outside code blocks :block:code: @@ -352,8 +352,8 @@ static biblio_abbreviations = ctRegex!(`^(au|ed|ti|lng /+ bookindex split +/ static bi_main_terms_split = ctRegex!(`\s*;\s*`); static bi_main_term_plus_rest_split = ctRegex!(`\s*:\s*`); -static bi_sub_terms_plus_obj_cite_number_offset_split = ctRegex!(`\s*\|\s*`); -static bi_term_and_obj_cite_numbers_match = ctRegex!(`^(.+?)\+(\d+)`); +static bi_sub_terms_plus_object_number_offset_split = ctRegex!(`\s*\|\s*`); +static bi_term_and_object_numbers_match = ctRegex!(`^(.+?)\+(\d+)`); #+END_SRC ** language codes :language:codes: |