diff options
| author | Ralph Amissah <ralph@amissah.com> | 2016-11-09 17:52:33 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:13 -0400 | 
| commit | 2301a8251d111ca2e020f524ce036c11e4306a14 (patch) | |
| tree | aed462b441e64efe989dca5c5d5eee306d9d53be /org/ao_defaults.org | |
| parent | a bit of naming and tidying (diff) | |
0.9.0 document sections
Diffstat (limited to 'org/ao_defaults.org')
| -rw-r--r-- | org/ao_defaults.org | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/org/ao_defaults.org b/org/ao_defaults.org index 17d04b8..045e1e3 100644 --- a/org/ao_defaults.org +++ b/org/ao_defaults.org @@ -357,6 +357,8 @@ template SiSUrgxInitFlags() {        "header_meta"          : 0,        "heading"              : 0,        "biblio_section"       : 0, +      "glossary_section"     : 0, +      "blurb_section"        : 0,        "para"                 : 0,        "blocks"               : 0, // 0..2 generic        "code"                 : 0, // 0..2 @@ -431,8 +433,8 @@ template SiSUbiblio() {  #+BEGIN_SRC d  template InternalMarkup() {    struct InlineMarkup { -    auto en_a_o = "【"; auto en_a_c = "】";  // endnote en_a_o: '~{'; en_a_c: '}~' -    auto en_b_o = "〖"; auto en_b_c = "〗";  // endnote en_b_o: '~['; en_b_c: ']~' +    auto en_a_o = "【"; auto en_a_c = "】"; +    auto en_b_o = "〖"; auto en_b_c = "〗";    }  }  #+END_SRC @@ -535,6 +537,7 @@ static native_subhead_make              = ctRegex!(`^(?:cover_image|home_button_  /+ heading & paragraph operators +/  static heading_a          = ctRegex!(`^:?[A][~] `, "m");  static heading            = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?)\s+`,"i"); +static heading_seg_and_above = ctRegex!(`^:?([A-D1])[~]([a-z0-9_.-]*[?]?)\s+`,"i");  static heading_marker     = ctRegex!(`^:?([A-D1-4])[~]`);  static heading_anchor_tag = ctRegex!(`^:?[A-D1-4][~]([a-z0-9_.-]+) `,"i");  static heading_identify_anchor_tag = ctRegex!(`^:?[A-D1-4][~]\s+(?:(?:(?:chapter|article|section|clause)\s+[0-9.]+)|(?:[0-9]+))`,"i"); // unless dob.obj =~/^:?[A-D1-4]~\s+(?:|(?:chapter|article|section|clause)\s+)([0-9.]+)/i @@ -543,8 +546,10 @@ static heading_extract_unnamed_anchor_tag = ctRegex!(`^:?[A-D1-4][~]\s+((?:[0-9]  static heading_marker_missing_tag = ctRegex!(`^:?([A-D1-4])[~] `);  static heading_title      = ctRegex!(`^:?[A-D1-4][~][a-z0-9_.-]*[?]?\s+(.+?)$`);  static heading_all        = ctRegex!(`^:?([A-D1-4])[~]([a-z0-9_.-]*[?]?)\s+(.+?)$`); // test, particularly [2] name/hashtag which may or may not be, does this affect title [3] +static heading_backmatter = ctRegex!(`^:?1[~][!](glossary|bibliography|biblio|blurb)\s+`,"i");  static heading_biblio     = ctRegex!(`^:?(1)[~][!](biblio(?:graphy)?|references?)`);  static heading_glossary   = ctRegex!(`^:?(1)[~][!](glossary)`); +static heading_blurb      = ctRegex!(`^:?(1)[~][!](blurb)`);  static para_bullet        = ctRegex!(`^_[*] `);  static para_bullet_indent = ctRegex!(`^_([1-9])[*] `);  static para_indent        = ctRegex!(`^_([1-9]) `); | 
