I'm tring to generate html documentation by uml and all works fine. My issue is that I would enclose all report in:
<html>
<body>
//report
</body>
</html>
How can I do this?
This is my acceleo report template that I would enclose:
[comment encoding = UTF-8 /]
[module useCase('http://www.eclipse.org/uml2/3.0.0/UML')]
[template public generateUseCase(uc : UseCase)]
[comment @main/]
[file (('useCases.html'), true)]
<h1>UseCase: [uc.name/]</h1>
[if (uc.ownedBehavior->notEmpty())]
<h5>Part of Activity: [uc.ownedBehavior.name/]</h5>
[/if]
<h3>Extension Points:</h3>
[if (uc.extensionPoint->isEmpty())]
<p>No Extension Points</p>
[/if]
<ul>
[for (e : ExtensionPoint | uc.extensionPoint)]
<li>[e.name/]</li>
[/for]
</ul>
[/file]
[/template]