diff options
Diffstat (limited to 'src/rst.pest')
| -rw-r--r-- | src/rst.pest | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/rst.pest b/src/rst.pest index 7b99b5c..595fd76 100644 --- a/src/rst.pest +++ b/src/rst.pest @@ -41,7 +41,7 @@ hanging_block = _{  // Substitution definition. A block type  substitution_def  =  { ".." ~ PUSH(" "+) ~ "|" ~ substitution_name ~ "|" ~ " "+ ~ inline_dirblock ~ DROP }  substitution_name =  { !" " ~ (!(" "|"|") ~ ANY)+ ~ (" "+ ~ (!(" "|"|") ~ ANY)+)* } -inline_dirblock   = _{ image }  // TODO: | replace +inline_dirblock   = _{ image }  // TODO: implement “replace” and so on  // Target. A block type  target         =  { target_qu | target_uq } | 
