}
public BlockList parse( String rText ) throws Exception {
BasicTemplateAntlrLexer btal = new BasicTemplateAntlrLexer( new StringReader( rText ) );
BasicTemplateAntlrParser btap = new BasicTemplateAntlrParser( btal );
btap.template();
return btap.getBlockList();
}