Changes between Version 4 and Version 5 of BoostDocs/Quickbook-1.5


Ignore:
Timestamp:
Oct 11, 2009, 11:59:27 AM (13 years ago)
Author:
Daniel James
Comment:

Clarify the nested separator details a bit.

Legend:

Unmodified
Added
Removed
Modified
  • BoostDocs/Quickbook-1.5

    v4 v5  
    9696[template test[x] [join1 [join2 0 [x]] 0]]
    9797}}}
    98 is interpreted as:
     98`join` is interpreted as having the arguments
    9999{{{
    100 [template test[x] [join1 [join2..0 [x]] 0]]
     100[join2
    101101}}}
    102 Which is confusing, it probably should be interpreted as:
     102and
    103103{{{
    104 [template test[x] [join1 [join2 0 [x]]..0]]
     1040 [x]] 0
     105}}}
     106which is confusing. It should be interpreted as having the arguments
     107{{{
     108[join2 0 [x]]
     109}}}
     110and
     111{{{
     1120
    105113}}}
    106114
    107 I think that both seperators (spaces and `..`) should be ignored inside square brackets.
     115I think that both seperators (spaces and `..`) should be ignored inside square brackets. So this means that
     116
     117{{{
     118[join1 [join2 0 [x]] 0]
     119[join1 [join2 0 [x]]..0]
     120[join1 [join2 0..[x]] 0]
     121[join1 [join2 0..[x]]..0]
     122}}}
     123
     124Would all be equivalent.
    108125
    109126== Other Tickets ==