Edgewall Software

Changes between Initial Version and Version 1 of Ticket #92


Ignore:
Timestamp:
Jan 18, 2007, 3:42:00 PM (17 years ago)
Author:
cmlenz
Comment:

(fixed up wiki formatting for better readability)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #92

    • Property Status changed from new to assigned
  • Ticket #92 – Description

    initial v1  
    22
    33Examples:
     4
    45if payment_amount is 10
    5 ${payment_amount} will render to 10
    6 $${payment_amount} will render out to ${payment_amount}
    7 $$${payment_amount} will render to $${payment_amount}
    8 $$$${payment_amount} will render to $${payment_amount}
    9 $$$$${payment_amount} will render to $$${payment_amount}
     6 * ${payment_amount} will render to 10
     7 * $${payment_amount} will render out to ${payment_amount}
     8 * $$${payment_amount} will render to $${payment_amount}
     9 * $$$${payment_amount} will render to $${payment_amount}
     10 * $$$$${payment_amount} will render to $$${payment_amount}
    1011
    1112I also tried $${payment_amount}, but that renders to ${payment_amount}