#if($r.isNotEmpty($tableTitle))
$tableTitle
#end
#if($r.isNotEmpty($tableCaption))
$tableCaption
#end
#if($r.isNotEmpty($headerRows))
#foreach($headerRow in $headerRows)
#foreach($headerColumn in $headerRow.columns)
$r.xssScan($headerColumn.text) |
#end
#end
#end
#foreach($tableRow in $tableRows)
#foreach($tableColumn in $tableRow.columns)
#if($r.isTrue($tableColumn.header))
$r.xssScan($tableColumn.text) |
#else
$r.xssScan($tableColumn.text) |
#end
#end
#end