#bigdef test multi
line

macro
#endbigdef

First macro:
test
#######################################################################

#bigdef test(arg1, arg2)
multi line macro
with args : <arg1> and <arg2>
------
#endbigdef

Second macro:
test(this, that)
#######################################################################

#bigdef test
  
        lots
          of      
           spaces   
        
#endbigdef

Third macro:
test
#######################################################################

#bigdef test            
Macro with conditional bits in:
#define SHOWME
#ifdef SHOWME
This should be in test macro
#else
This should not be in test macro
#endif
#endbigdef

Fourth macro:
test
#######################################################################

#bigdef test            
#pragma filepp SetKeywordchar ##
##include "README"
##pragma filepp SetKeywordchar #
#endbigdef

Fifth macro:
test
#######################################################################
