#** * This file is responsible for generating all the template * the HTMl that shows all template information * @author Trever M. Shick * @param templateDoc This is the TemplateDoc from which this template will pull information *# #set ($templateComment = $templateDoc.comment)
Overview > ${templateDoc.name}${templateDoc.comment.content}
#endMacros | #foreach ($macroDoc in $templateDoc.macros)|
---|---|
${macroDoc.name} | #set ($comment = $macroDoc.comment) #if ($comment) #if ($comment.content.length() > 60) #set($line = $comment.content.substring(0,60)) $line... #else $comment.content #end #end |