diff options
| author | Ralph Amissah <ralph@amissah.com> | 2016-08-20 08:57:12 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-04 14:53:38 -0400 | 
| commit | c7c6c121884feb55ae3964e6055ac8ca983458cd (patch) | |
| tree | b354f012dd41202081bdd5cbc8b3e18fc8f945f9 /org/ao_defaults.org | |
| parent | minor move (diff) | |
step 0.6.3 includes fixes
Diffstat (limited to 'org/ao_defaults.org')
| -rw-r--r-- | org/ao_defaults.org | 14 | 
1 files changed, 9 insertions, 5 deletions
| diff --git a/org/ao_defaults.org b/org/ao_defaults.org index a6baeb4..78b1de8 100644 --- a/org/ao_defaults.org +++ b/org/ao_defaults.org @@ -507,6 +507,10 @@ template InternalMarkup() {  * regex ctRegex                                                       :regex:  [[./sdp.org][sdp]]  [[./][org/]] +http://dlang.org/phobos/std_regex.html +- Plain string, in which case it's compiled to bytecode before matching. +- Regex!char (wchar/dchar) that contains a pattern in the form of compiled bytecode. +- StaticRegex!char (wchar/dchar) that contains a pattern in the form of compiled native machine code.  ** misc                                                                :misc: @@ -620,7 +624,7 @@ static para_attribs       = ctRegex!(`^_(([0-9])(_([0-9]))?|_([1-9])?[*]) `);  #+name: ao_rgx  #+BEGIN_SRC d  /+ blocked markup +/ -static block_open                = ctRegex!("^((code|poem|group|block|quote|table)[{].*?$)|^`{3} (code|poem|group|block|quote|table)"); +static block_open                = ctRegex!("^((code([.][a-z][0-9a-z_]+)?|poem|group|block|quote|table)[{].*?$)|^`{3} (code([.][a-z][0-9a-z_]+)?|poem|group|block|quote|table)");  // static block_open_less_code      = ctRegex!("^(((poem|group|block|quote|table)[{].*?$)|`{3} (poem|group|block|quote|table))");  static block_poem_open                = ctRegex!("^((poem[{].*?$)|`{3} poem)");  #+END_SRC @@ -630,9 +634,9 @@ static block_poem_open                = ctRegex!("^((poem[{].*?$)|`{3} poem)");  #+name: ao_rgx  #+BEGIN_SRC d  /+ blocked markup tics +/ -static block_tic_open            = ctRegex!("^`{3} (code|poem|group|block|quote|table)"); +static block_tic_open            = ctRegex!("^`{3} (code([.][a-z][0-9a-z_]+)?|poem|group|block|quote|table)");  // static block_tic_open_less_code  = ctRegex!("^`{3} (poem|group|block|quote|table)"); -static block_tic_code_open       = ctRegex!("^`{3} (code)"); +static block_tic_code_open       = ctRegex!("^`{3} (code)([.][a-z][0-9a-z_]+)?");  static block_tic_poem_open       = ctRegex!("^`{3} (poem)");  static block_tic_group_open      = ctRegex!("^`{3} (group)");  static block_tic_block_open      = ctRegex!("^`{3} (block)"); @@ -646,9 +650,9 @@ static block_tic_close           = ctRegex!("^(`{3})$","m");  #+name: ao_rgx  #+BEGIN_SRC d  /+ blocked markup curly +/ -static block_curly_open          = ctRegex!(`^((code|poem|group|block|quote|table)[{].*?$)`); +static block_curly_open          = ctRegex!(`^((code([.][a-z][0-9a-z_]+)?|poem|group|block|quote|table)[{].*?$)`);  // static block_curly_open_less_code = ctRegex!(`^((poem|group|block|quote|table)[{].*?$)`); -static block_curly_code_open     = ctRegex!(`^(code[{].*?$)`); +static block_curly_code_open     = ctRegex!(`^(code([.][a-z][0-9a-z_]+)?[{].*?$)`);  static block_curly_code_close    = ctRegex!(`^([}]code)`);  static block_curly_poem_open     = ctRegex!(`^(poem[{].*?$)`);  static block_curly_poem_close    = ctRegex!(`^([}]poem)`); | 
