pTemplateActionHandler.setDefaultSection( Section.NAME_body );
}
// set default section to first argument, and put everything else into that section
else {
RegExpMatch match = doRegExpMatchArguments( pArguments );
if( match.hasMatch() ) {
String sectionName = match.matchFirstSub();
String content = match.matchSecondSub();
pTemplateActionHandler.setDefaultSection( sectionName );
// REVIEW: this is deprecated
pTemplateActionHandler.append( content );