Changes between Version 40 and Version 41 of GoogleMapMacro


Ignore:
Timestamp:
Sep 6, 2010, 10:19:35 AM (14 years ago)
Author:
Martin Scharrer
Comment:

Added wiki processor syntax documentation.

Legend:

Unmodified
Added
Removed
Modified
  • GoogleMapMacro

    v40 v41  
    112112 `from`,`to`:: Request driving directions '`from`'->'`to`'. Multiple `to` addresses are allowed. No `address` or `center` need to be given.
    113113
    114 
     114== Processor Syntax ==
     115While Tracs normal macro syntax (`[[Macro(key=value,key=value)]]`) is nice for smaller arguments lists it is getting messy for longer lists.
     116This macro now also supports the so called ''wiki processor syntax'' (`{{{ <linebreak> #!Macro <linebreak> content <linebreak> }}}`) to allow for multiple lines of arguments.
     117In this case a line break will be read as a comma:
     118{{{
     119{{{
     120#!GoogleMap
     121key1=value1
     122key2="value 2, with comma"
     123key3=value3,key4=value4
     124}}}
     125}}}
     126is identical to:
     127{{{
     128[[GoogleMap(key1=value1,key2="value 2, with comma",key3=value3,key4=value4)]]
     129}}}
    115130
    116131== Examples ==