I need to customize the ui:include renderer in a way that when it generates the HTML output also adds a comment stating the starting and the ending of the included file.
Example, supposing a blank file.xhtml
:
Input
<ui:include src="file.xhtml" />
Output
<!-- START file.xhtml -->
<!-- END file.xhtml -->
At the moment I'm using JSF2.2 with MyFaces, any idea on how I could do that?
I would suggest to define following facelet tag :
and to use this tag instead ui:include in the code :