Edgewall Software

Changes between Version 2 and Version 3 of WikiMacros


Ignore:
Timestamp:
Mar 22, 2004, 3:38:52 AM (20 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiMacros

    v2 v3  
    33
    44Another kind of macros are WikiProcessors. They typically deal with alternate markup formats and representation of larger blocks of information (like source code highlighting). See also: WikiProcessors.
     5
     6== Using Macros ==
     7Macro calls are enclosed in two ''square brackets''. Like python functions, macros can also have arguments, a comma separated list within parenthesis.
     8
     9=== Examples ===
     10
     11{{{
     12 [[Timestamp]]
     13}}}
     14Display:
     15 [[Timestamp]]
     16
     17{{{
     18 [[HelloWorld(Testing)]]
     19}}}
     20Display:
     21 [[HelloWorld(Testing)]]
     22
    523
    624== Available Macros ==
     
    1028 * '''!HelloWorld''' -- An example macro, useful for learning how to write macros.
    1129 * '''Timestamp''' -- Insert the current date and time.
    12 
    13 === Examples ===
    14 !HelloWorld:
    15  [[HelloWorld(Testing)]]
    16 
    17 Timestamp:
    18  [[Timestamp]]
    1930
    2031
     
    4859
    4960Example:
     61
    5062{{{
    5163def execute(hdf, args):